I have a form like this:
<form action="lol.php" method="POST">
<input type="text" name="fe" />
<input type="submit" id="submitbtn" value="submit" onclick="this.disabled = true;" />
</form>
and in firefox it works perfectly, but in Internet Explorer (latest version) the button goes disabled but the form does not submit. I have also tried:
<form action="lol.php" method="POST" onsubmit="document.getElementById('submitbtn').disabled = true">
and removed the onclick code from the submit button, but that had the same effect. What code should I use to work on all browsers?