Bug Tracker

Modify

Ticket #2398 (closed bug: fixed)

Opened 5 years ago

Last modified 14 months ago

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

comment:1 Changed 5 years ago by davidserduke

  • Description modified (diff)

comment:3 Changed 3 years ago by rwaldron

  • Priority changed from major to low
  • Status changed from new to closed
  • Resolution set to fixed

This issue no longer exists

 http://jsfiddle.net/rwaldron/fmDJQ/1/

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.