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
Use this:
<form id="myform" name="myform" onSubmit="search();return false;" action="">
You can either disable the submit buttons
$('form :submit').attr("disabled", "disabled");
or just make the submit event do nothing
$('form').submit(function(e){ e.preventDefault(); });
It depends what exactly are you trying to achieve.