Hello, I want to avoid double submitting, so I have the following code:
$(function() { $("input[type='submit']").click(function() { $("input[type='submit']").attr('disabled', true); }); }); In FF, it works pretty nice, but in IE 6 and IE 7, the submit buttons gets disabled but the form is not submitted ... What's wrong with it? Do you have any better solution? Thanks!