Bug Tracker

Modify

Ticket #10191 (closed bug: invalid)

Opened 21 months ago

Last modified 21 months ago

bug "animation with on hover with dropdownlist"

Reported by: golavi80@… Owned by:
Priority: low Milestone: None
Component: effects Version: 1.6.3
Keywords: Cc:
Blocking: Blocked by:

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

comment:1 Changed 21 months ago by addyosmani

  • Priority changed from undecided to low
  • Resolution set to invalid
  • Status changed from new to closed
  • Component changed from unfiled to effects

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.

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.