How can i disable function .scrollTo (jquery) for all pages in my Firefox? Probably i must use NoScript or GreaseMonkey, but how can i use it?
|
feedback
|
migrated from stackoverflow.com Aug 17 '11 at 14:13
This question came from our site for professional and enthusiast programmers.
jQuery.scrollTo = function(){};basically re-assigning it to an empty function. Though I have to ask... why do you want to do this? (of course you would need to re-define this before it is called) – scunliffe Aug 17 '11 at 14:03