#2398 closed bug (fixed)
slideUp() - Firefox & IE7 Bug
Reported by: | computerkidt | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.2.4 |
Component: | effects | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description (last modified by )
In IE7 and Firefox 2.0.0.12 slideUp(); doesn't work right. slideUp() only slides up smoothly once it has been run once on that page, BUT if that page is reloaded then your still need to run slideUp(); before it works right.
Basicly runs like hide(); each first time you run it. Also It needs to be run once with every id.
Example:
$(document).ready(function() { $('#showmenu').hide(); }); function hidemenu() { $('#menu').slideUp(1500); $('#showmenu').fadeIn(1000); } function showmenu() { $('#menu').slideDown(1500); $('#showmenu').fadeOut(1000); }
<span id='showmenu'><a href='#' OnClick='showmenu();'>Show Menu</a></span> <span id='menu'><a href='#' OnClick='hidemenu();'>Hide Menu</a> <!-- Table with links --> </span>
Change History (2)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|
comment:3 Changed 12 years ago by
Priority: | major → low |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
This issue no longer exists
http://jsfiddle.net/rwaldron/fmDJQ/1/