How can slide down a div with jquery on page load where css is set to display:none? I see a lot of solutions but none can slide div if css is set display:none. The best way is to hide it on load and after slidedown but the div have flash (show) when page is loading.

link|improve this question

33% accept rate
I asked something like this, stackoverflow.com/questions/8550009/… – user1090389 Jan 2 at 16:54
What have you tried? What's not working? Sharing some code would be helpful :) – Andrew Whitaker Jan 2 at 17:33
feedback

2 Answers

You could try this:

$(document).ready(function(){
    $('.hidden').slideDown(1000);
});

HTML:

<div class="hidden">This is the content</div>

CSS:

.hidden{
 display:none;   
}

It slides down on page load.

DEMO

link|improve this answer
this work because the library load before the html page – Aol Shqip Jan 2 at 21:45
feedback
$('#hidden_div_id').slideDown('slow');

this internally make use of display:block

link|improve this answer
on page loading this work as show() and will not slide. – Aol Shqip Jan 2 at 21:42
i dont think so.. please check jsfiddle.net/zp6RS/2 – dku.rajkumar Jan 3 at 3:52
feedback

Your Answer

 
or
required, but never shown

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