I'm new to jquery and bumped into a problem i can't fix

I want that on pageload my content is sliding down so i use the next code:

  $(document).ready(function () {
    $("#content").hide();
    $("#content").slideDown(1000);
  });

when i load the page the content slides down narmally, than the content gets hidden and slides down again.

When i go to the css and do #content{display: none;} instead of $("#content").hide(); everything works fine. (can't use this for browsers without js)

Does anyone know the cause of this?

Thanks!

link|improve this question
are you sure that isn't called twice? I just made a test here: jsfiddle.net/jackJoe/qKUQ4 – jackJoe Aug 12 '11 at 11:46
your code works fine - jsfiddle.net/kN8Mf Is there something else that should affect it? – llamerr Aug 12 '11 at 11:48
I explect this might be a browser specific bug - what is your platform/browser? – Billy Moon Aug 12 '11 at 11:50
feedback

2 Answers

Your code has no problem inside. It's somewhere else in your code.

isn't that function call in some function that is called twice?

link|improve this answer
feedback

You are saying that everything works fine while using css #content{display: none;} than i offer u to use Jquery .css() method( http://api.jquery.com/css/ )..

u can use it like :

  $(document).ready(function () {
    $("#content").css( { 'display' : 'none' } );
    $("#content").slideDown(1000);
  });

sipmle as that.

and i also agree with @Billy Moon , it can be a browser specific bug or u may be calling a page refresh command, somewhere within ur code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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