Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i got my jquery slideToggle working for Firefox. Ok it's not perfect, because when it slides down the performance is somehow jumpy. I tried different workarounds, but noone helped that right.

So first question is, what could cause this little jumpiness in my code.

And then the bigger problem is the display in IE. IE6 and IE7. The hidden divs are not hidden in IE in the initial pose. And the sliding acts strange, too.

I hope that someone can rescue me out of this sh......

Just visit my site with firefox:

http://www.haus-plan.de/_01_Hausplan/

and check it and then compare it with IE6&7.

The source code is accessible with firefox or firebug.

I hope that anyone can help.

here my jquery code:

$(document).ready(function(){

//  Get height of all des before hide() occurs.  Store height in heightArray, indexed based on the de's position.
heightArray = new Array();
$("div.d_show_hide #de").each(function(i) {
  theHeight = $(this).height();
  heightArray[i] = theHeight;
});

// Hide all des
$("div.d_show_hide #de").hide();

//  When a tt is clicked, 
$("div.d_show_hide .tt").click(function () {
  //  Based on the tt's position in the div, retrieve a height from heightArray, and re-assign that height to the sibling de.
  $(this).next("#de").css({height: heightArray[$("div.d_show_hide .tt").index(this)]});
  //  Toggle the divideVisibility of the de directly after the clicked de
  $(this).next("#de").slideToggle("slow");
});

});

share|improve this question
Does your javascript validate in jslint.com ? If you're having issues in IE, that's the first thing I'd check. IE is finicky as all getout when it comes to valid JS (or, alternately, Firefox is more forgiving). – inkedmn Oct 28 '09 at 16:59
Do you have a slow computer? It might be due to that you have jumpiness. Get rid of the height stuff for testing... does it work? Simply hide them, and toggleSlide onclick. Does that work? – CodeJoust Oct 28 '09 at 17:09
Hi, what about you? Do you see the jumpy animation when clicking on the red titles in the content field? And when you visit the site in IE, do you see the difference? the hidden divs are shown on start in IE. But that shoudlnt be so. Please help. – UtothaX Oct 28 '09 at 17:46
yes the js is valid. – UtothaX Oct 28 '09 at 18:13
my computer should not be that slow. Core i7 with 6GB RAM :) – UtothaX Oct 28 '09 at 18:14

1 Answer

just have to force the width of the elemet!

<li><a href="#" id="sombra" onclick="$('#opt_1').slideToggle(360);">MUEBLES</a>
              <!-- just have to force the width of the elemet! -->
              <ul id="opt_1" style="display:none; width:164px;">

              <li id="imagen_superior"></li>
              <li><a href="salones-en-madrid-capital.php">SALONES</a></li>
              <li><a href="dormitorios-de-matrimonio-en-madrid-capital.php">DORMITORIOS</a></li>
              <li><a href="dormitorios-juveniles-en-madrid-capital.php">JUVENILES</a></li>
              <li><a href="muebles-de-cocina-en-madrid-capital.php">COCINAS</a></li>
              <li><a href="cuartos-de-bano-en-madrid-capital.php">BAÑOS</a></li>
              <li><a href="muebles-auxiliares-en-madrid-capital.php">AUXILIARES</a></li>
              <li><a href="sofas-en-madrid-capital.php">SOFÁS</a></li>
              <li><a href="mesas-en-madrid-capital.php">MESAS</a></li>
              <li><a href="sillas-en-madrid-capital.php">SILLAS</a></li>
              <li><a href="colchoneria-en-madrid-capital.php">COLCHONES</a></li>
              <li id="imagen_inferior"></li>
            </ul>

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.