Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using UIWebView to load a url

Inside the page of that url, it uses alert("whatever msg") as javascript

so my UIWebView will pop up a window and show that alert message.

Is there a way to disable this kind of popup window or javascript alert window?

thanks

share|improve this question

2 Answers

up vote 10 down vote accepted

Add this after your web view has loaded its content

[MyWebView stringByEvaluatingJavaScriptFromString:@"window.alert=null;"];
share|improve this answer
1  
Very helpful, it is working. I have mention that I have to put this message in webViewDidStartLoad delegate method, just for other people who may want to know – Jack Aug 3 '10 at 20:44

You can bind window.alert to another function. So:

window.alert = function() {
  //does nothing so effectively "disables" alert
};

Make sure you do this before you call any alerts. The neat thing about this is you can customize the way you display messages to the user. So you could override window.alert to log to the console (for debugging purposes) or you can render it on the page (with a lightbox or something similar).

share|improve this answer
Yes, this works as well, thanks – Jack Aug 3 '10 at 20:44
No problem. pop850's answer is probably what you want to accept since it addresses your concern directly. – Vivin Paliath Aug 3 '10 at 20:46
2  
From my point of view this answer addresses the issue more gracefully, as var a = null; a(); is a JavaScript runtime error. – LordTwaroog Jan 18 at 15:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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