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?
In fact, because you write submitmyform();return false only submitmyform is evaluated.
submitmyform();return false
submitmyform
In the case of two commands, you will have to put them between braces like this
{submitmyform();return false;}
so that both are evaluated.