Opened 15 years ago
Closed 14 years ago
#3147 closed bug (invalid)
click event problem
Reported by: | Helleshtern | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | event | Version: | 1.2.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I have a problem similar to posted here: http://dev.jquery.com/ticket/2532 but mine is with click event.
I have part of code like this:
$('div#menu').click(function() { $('#list').SlideOutLeft(500); setTimeout ("$('#turn').show();", 400); setTimeout ("$('#turn').hide();", 600); setTimeout ("$('#listct').SlideInRight(500);", 500); return false; });
It working properly in all older versions of jQuery but from 1.2 when I click it doesn't execute all as it should - just part of commands, one or two from beginning. I'm newbie in using jQuery so maybe I do something wrong.
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 14 years ago by
flesler is correct and this is interface. Check out jQuery UI's effects for replacement functionality.
comment:3 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
What is SlideInRight and SlideOutLeft ? that's not part of the core. Maybe that's causing the problems, isn't that Interface ?
If so, I think it doesn't work with newe version of jQuery.