/jquery-smoothScroll

[Old stuff] Another tiny jQuery plugin that animates anchor links with some options. Works also for "back to top" links.

Primary LanguageJavaScriptGNU General Public License v2.0GPL-2.0

jquery-smoothScroll

Another tiny jQuery plugin that animates anchor links with some options. Works also for "back to top" links.

Simple example

$(document).ready(function() {
	$('.scroll').smoothScroll();
});

Scroll to top

$(document).ready(function() {
	$('.toTop').smoothScroll({
		toTop: true
	});
});