On 11/17/2011 10:41 AM, Robert wrote:
I would like to stop ioVation(); from being called at all, but cant
figure it out, any help would be appreciated.
Well... I did never try it. But maybe it works to override the function?
Something like
document.body.innerHTML += '<script type="text/javascript"> function
ioVation() { alert( "Bingo!" ) } </script>'
See also http://lmgtfy.com/?q=override+javascript+function
Robert
There was a function Timer on a page that I use regularly that would
cause the page to leave the results I was looking at. This is what I did:
function rgw_noop() {
return;
}
unsafeWindow.Timer = rgw_noop;
It's using the unsafeWindow object but I know the site and thus trust it.
I don't know if there is a "safe" way to override a page function.
--
In Reach Technology: http://www.inreachtech.net/
Robert G. Werner
[email protected]
Tel: 559.304.5122
The sooner you make your first 5000 mistakes, the sooner you will be
able to correct them.
-- Nicolaides
--
You received this message because you are subscribed to the Google Groups
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/greasemonkey-users?hl=en.