Perform scrolling to top.

Kmandapalli
Posted by Kmandapalli under jQuery category on | Points: 40 | Views : 1311
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});

Comments or Responses

Login to post response