The code below is to prevent double click submissions and it seems to work. It prevents the double submission of data, but the fadeOut is not executed. Anyone know why? After the submission, the submit button, if pressed will cause the fadeOut to execute.
$("#form1").submit(function() {
$("#form1Submit").click(function(event){
event.preventDefault();
$("#form1Submit").fadeOut("slow");
});
});