<script>
$(document).ready(function() {
$('#gototop ').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
$('#gotobottom').click(function(){
$('html, body').animate({scrollTop:$(document).height()}, 'slow');
return false;
});
});
</script>
$(document).ready(function() {
$('#gototop ').click(function(){
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
$('#gotobottom').click(function(){
$('html, body').animate({scrollTop:$(document).height()}, 'slow');
return false;
});
});
</script>
No comments:
Post a Comment