On an ASPX.Page, I have a button that performs a postback. User must be prevented from clicking it more than once. I want to do this with jQuery but
jQuery(document).ready(function() {
$('#<%= saveButton.ClientID %>').click(function() { $(this).attr('disabled', 'true'); });
});
doesn´t work for me because the button does not postback. Is there an easy way to prevent a second click while still keeping the functionality of the button?