JoeAtRevolutionUnltd
Programmer
I'm trying to disable a button when clicked using jquery. In firefox it works fine in ie the form wont submit. Here is the code:
$('#continue').click(function(){
$(this).attr("disabled","disabled");
});
$('#continue').click(function(){
$(this).attr("disabled","disabled");
});