Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Code that is generated on my page that I cannot control contains an alert. Is there a jQuery or other way to disable alert() from working?

The javascript that is being generated that I want to disable/modify is:

function fndropdownurl(val)
1317 { var target_url
1318 target_url = document.getElementById(val).value;
1319 if (target_url == 0)
1320 {
1321 alert("Please Select from DropDown")
1322 }
1323 else
1324 {
1325 window.open(target_url);
1326 return;
1327 }
1328 } 

I want to disable the alert on line 1321

Thanks

share|improve this question
See JavaScript: Overriding alert() – Andrew Moore Dec 8 '10 at 14:01

marked as duplicate by Pekka 웃, CD.., Rup, thejh, Andrew Moore Dec 8 '10 at 13:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 6 down vote accepted

Simply overwrite alert with your own, empty, function.

window.alert = function() {};

// or simply
alert = function() {};
share|improve this answer
The second version won't work in IE. Stick to the first. – Tim Down Dec 8 '10 at 14:01
The first one works cross-browsers, Thanks! – specked Dec 8 '10 at 14:07

You can try and make a new function function alert() { } , this is not going to do anything since is empty and will overwrite the existing one.

share|improve this answer
Doesn't work in IE. – Tim Down Dec 10 '10 at 1:11

This works in Chrome and other browsers with the console.log function.

window.alert = function ( text ) { console.log( 'tried to alert: ' + text ); return true; };
alert( new Date() );
// tried to alert: Wed Dec 08 2010 14:58:28 GMT+0100 (W. Europe Standard Time)
share|improve this answer

Try this:

alert("test");
alert = function(){};
alert("test");

The second line assigns a new blank function to alert, while not breaking the fact that it is a function. See: http://jsfiddle.net/9MHzL/

share|improve this answer
Doesn't work in IE. – Tim Down Dec 10 '10 at 1:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.