The Javascript sourceJavascript related stuffMissing form ACTIONs- September 5, 2008 Say you want to disable a submit button when it's clicked, to prevent the user from submitting twice: <form name="myform" <input type="submit" value="Submit" onclick="this.disabled = 'true';" <form On Windows, this works fine in IE but not in Firefox. Or so it appears. What's going on Oops, you forgot an ACTION attribute in your form. (It's okay, this is common if you're planning an Ajax-style app.) Without it, IE just ignores the submit click, but Firefox uses the...http://jszen.blogspot.com/ |