On my wordpress site my smooth scroll to anchor script is not working like expected. It fires the "alert" and scrolls to the page but without any animation.
$(document).ready(function($){
/*------------------------------------*/
/* SMOOTH SCROLL */
/*------------------------------------*/
$('a[href^="#"]').on('click',function (e) {
    alert("Step 1");
    e.preventDefault();
    var target = this.hash,
    $target = $(target);
    $('html, body').stop().animate({
        'scrollTop': $target.offset().top
    }, 900, 'swing', function () {
        window.location.hash = target;
    });
});
});    
 
    