On site there is code like that (its site on LAN)
<script language="JavaScript" type="text/javascript">
alert("ble");
</script>
I try to disable that alert using GM. I was trying to do this
unsafeWindow.alert=function() {};
but I see the alert and get this error
Error: uncaught exception: [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: file:///C:/Documents%20and%20Settings/arokitnicki/Dane%20aplikacji/Mozilla/Firefox/Profiles/sm4bsods.default/extensions/%7Be4a8a97b-f2ed-450b-b12d-ee082ba24781%7D/components/greasemonkey.js :: anonymous :: line 377" data: no]
How to disable that alert?
P.S. this is NOT Javascript question, but greasemonkey question.
EDIT:
Its company's website, so I can't paste the real code
<head>
<script>
dojo.require("dojo.back");
dojo.back.init();
</script>
</head>
<body onload="someMethod()">
<iframe></iframe>
<script>
alert("bla");
</script>
</body>
There are also some scripts and css declarations in header.
<alert>...is placed in the body on a page, which you would like to abort using Greasemonkey? – Anders Jan 11 '11 at 13:05