I have a WordPress blog and I'm trying to make that when a user clicks on "Show comments" the comments section appears with a simple animation.. I used
<a href="#comments" id="showcomments">Show comments</a>
and then:
<script type="text/javascript">
jQuery(function(){
jQuery("#showcomments").click(function () {
jQuery("#comments").slideToggle("slow");
});
});
</script>
<div id="comments" style="display:none">
......
</div>
This is what I achieved (scroll down to "Commenta l'articolo!"): http://multiformeingegno.it/riflessioni/topserver-server-virtuali-made-italy/
As you can see if I click the link the comments section appears but the browser doesn't go down to the start of the section, you have to manually scroll down.. can you help me? Thanks!! ;)