id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
10191	"bug ""animation with on hover with dropdownlist"""	golavi80@…		"There isn't a way to choose value from dropdownlist when using animation ,like slideDown ,slideUp togther with hover function

try change values of dropdownlist with this code and you will undrastand the bug


This is HTML example :
 
{{{
 <ul><li id=""l2""><img src=4.gif  /> 
<div id=""popup6"" class=""popup_block""> 
    <asp:DropDownList ID=""dd"" runat=server> 
    <asp:ListItem>1</asp:ListItem> 
            <asp:ListItem>2</asp:ListItem> 
            <asp:ListItem>3</asp:ListItem> 
            <asp:ListItem>4</asp:ListItem> 
            <asp:ListItem>5</asp:ListItem>         
            </asp:DropDownList> 
</div></li></ul>
}}}
 

 This is the Jquery example:

{{{
$(document).ready(function () { 
        $(""#l2"").hover(function () { 
            $('#popup6').stop(true, true).slideDown(); 
 
        }, function () { 
            $('#popup6').stop(true, true).fadeOut(400,  
               
 
            }); 
 
 
        }); 
 
    });
}}}
 
"	bug	closed	low	None	effects	1.6.3	invalid				
