malihu / page-scroll-to-id

Animated page scrolling to specific id within the document with jquery.
MIT License
224 stars 98 forks source link

Plugin not working on page #9

Open SaraTerry94 opened 8 years ago

SaraTerry94 commented 8 years ago

Hello,

The plugin doesn't seem to be working on my page. When you click the links or scroll down nothing happens.

The CodePen won't be functional but I thought it'd be easier to view: http://codepen.io/SaraTez/pen/xEYGjA

Thank you

malihu commented 8 years ago

In CodePen your js script is not correct. It should be:

(function($){
    $(window).on("load",function(){
        $("a[href*='#']").mPageScroll2id();
    });
})(jQuery);

as in the guide in plugin's homepage.

SaraTerry94 commented 7 years ago

It still doesn't seem to be working in my page: https://www.kentunion.co.uk/test2/

Codepen of current code: http://codepen.io/SaraTez/pen/xEYGjA