In WebBrowser, is there anyway to capture the stupid popups that are generated by javascript?
The ones which say \"Success\" or watever and have the \"Ok\" button.
You could simply redefine the global javascript alert function like this:
function alert() {}
then nothing will happen when other code calls the alert.
UPDATE:
to do this add the following to your page code:
If you are injecting it to your pages then you may wish to look at greasemonkey and then add this script using that:
https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/
there are similar addons for all browsers.