I have a simple Javascript problem that i can’t sort out.
How can i take the focus away from a button when a form is activated.
I have tried:
<input type=“submit” name=“mybutton” onfocus=“document.myform.mybutton.blur()”;>
and also
<input type=“submit” onfocus=“this.blur()”;>
but neither work. Any ideas?
this would really help me out.