Could you explain what means "return false" here? Why is it necessary? This is a jQuery code as you see. This code creates a click event for a button to get back to the top of the page.
<script>
$("bactToTop").click(function() {
$("body").animate({scrollTop:0}, "slow");
return false;
});
</script>