Modify ↓
Ticket #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: | ||
| Blocking: | Blocked by: |
Description (last modified by davidserduke) (diff)
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
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
