Using the .NET Windows Forms WebBrowser control to show the preview of a page, I\'m using the following approach described in this SO posting to disable all links on the pag
I think that best approach to just prevent from sending anything to anywhere is to:
$('form').submit( function(e){
e.preventDefault();
});
This disables all forms on page, no need to do individually for every form.
http://jsfiddle.net/cDLsw/6/