| Current Path : /var/www/html/tax/public/asset/js/ |
| Current File : /var/www/html/tax/public/asset/js/scroll.js |
$(document).ready(function(){
$('.top').click(function () {
$('html, body').animate({scrollTop:$(document).height()}, 'slow');
return false;
});
$('.bottom').click(function () {
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
});