I think i writte something bad because i can´t get the effect slideDown works fine , i want when click show the div in slide down but slow and at the moment show as hasn´t effect and show very fast
My code :
jQuery(document).ready(function() {
jQuery(".login_data_open").click(function() {
jQuery("#login_data_content").slideDown("slow");
});
});
<div id="login_data_content" style="display:none;"></div>
<div class="login_data_open">Open Div</div>
It´s possible i writte bad because i think all it´s ok and it must show ok and show slow and no all in one second
Thank´s for the help
HTML Sample
JavaScript Sample
If "slow" is too fast for you then you can enter in the number of milliseconds you would like for the effect to take place in.