How to delay the scroll down for few seconds?
My Code:
<script type="text/javascript">
$(function(){
$("#tmp_image-37113").click (function() {
$('#section--41340').show(150);
$('html, body').animate ({
scrollTop: $("#section--41340").offset().top
}, 2000);
return false;
});
});
</script>