2006/8/7, Scott Moore <[EMAIL PROTECTED]>:
This is an add-on to my previous question (Show/Hide with Two Links).
Using the below code to show/hide a div works extremely smooth in
Firefox Windows and Mac, Safari, Camino and Opera. However, in IE6,
the slide down is slow and choppy and the slide up doesn't happen -
the div just disappears.
Is there something I'm missing to have it function properly in IE6?
Scott
Demo:
http://nonsponsored.com/cart_demo/minicart.html
SlideDown/SlideUp Code:
$(document).ready(function(){
$("a.show_cart").toggle(
function(){
$("div#minicart_inner").slideDown("normal");},
function(){
$("div#minicart_inner").slideUp("normal");});
});
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
