Posted on: 12/2/2014 7:16:18 PM | Views : 393

Hello and thanks for reading this post.
Im using SlideToggle() to let my search bar slide down from the top but all the content appears before the slide annimation is compleat.
What can i do to solve this?
JQUERY:
<script type="text/javascript"> $('#SearchField').hide(); $(document).ready(function () { $('#SearchField').slideToggle(); }); </script> ASP / HTML:
<section id="DefaultLayout"> <article id="SearchField"> <div id="ContentField"> <h3>Find the perfect rental car:</h3> </div> </article> </section> CSS:
section#DefaultLayout { background: #fff; width: 100%; min-height: 700px; height: 100%; border: ...

Go to the complete details ...