Takaya213
5/2/2013 - 7:54 AM

An easy way to create a scroll effect on pages from one anchor to another.

An easy way to create a scroll effect on pages from one anchor to another.

$(document).ready(function(){
    $('a').click(function(){
	    $('html, body').animate({
	        scrollTop: $( $.attr(this, 'href') ).offset().top
	    }, 500);
	    return false;
	});
});