Hi there and happy new year,
I have a menu which uses the scrollto plugin ( * http://flesler.blogspot.com/2007/10/jqueryscrollto.html).
My Page is a onePager-Template and every menu item click, scrolls to a specific area.
I wanna disable this function (or any js) on certain a
tags like this:
// normal behaviour / srolls to page (anchor link with scrollTo Plugin)
<a href="#page-area">Area</a>
// disabled behaviour
<a href="http://www.test.com" onclick="// disable js on this tag">Another Area</a>
But I have no idea how to do this.
I only know that something like this $(self).preventDefault
could turn off js behaviour.
Can someone help me out with a oneliner?
Thank you!!!!!