Opened 12 years ago
Closed 12 years ago
#10191 closed bug (invalid)
bug "animation with on hover with dropdownlist"
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | effects | Version: | 1.6.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
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, }); }); });
Change History (1)
comment:1 Changed 12 years ago by
Component: | unfiled → effects |
---|---|
Priority: | undecided → low |
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Thanks for submitting a ticket to the jQuery project. Ideally we would have liked for you to submit a reduced test case free of ASP code as we don't have the resources to debug this.
Looking through your code however, I can't see anything that appears to be a direct issue with jQuery core. Correct me if I'm wrong, but you're aiming to have the drop-down display when someone hovers over an image.
For projects such as this we recommend posting questions in either the jQuery forums or on our IRC channel on freenode #jquery.