Scroll To Top
Scroll To Top
by techrevolt
HTML
<div class='drop'>
Move to Below
</div>
<div class='move'>Move to Top</div>
CSS
.drop{height:1000px;}
.move{background:gray;cursor:pointer;}
JavaScript
$('.move').click(function(){
$('html, body', window.parent.document).animate({ scrollTop: 0 }, 'slow');
});