I have a form that will be submitted by javascript code triggered in "onsubmit" of the tag. Works fine on all browsers - but not on IE7/IE8.
What can I do?
<form action="/dosomething.htm" method="GET" onsubmit="submitmyform();return false"> [...] <input type="submit" value="Go"> </form>
return false;not to work as it should. We need to see your code to get a better look at what's going on. edit we need to see the code forsubmitmyform(), as it's likely an error is occurring that prevents thereturn false;from being executed.