Skip to content

Instantly share code, notes, and snippets.

@yassine-khachlek
yassine-khachlek / gist:671991bb95e5cb432130
Created April 17, 2015 16:39
Smooth Scrolling To Internal Links With jQuery
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash;
var $target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {