hi, i need to disable the button during the click and need to enable after my server side event is done right now my code looks like this
$(document).ready(function(){ $('.saveButton').bind("click", function(e) { $(this).attr("disabled", "true"); return true; //causes the client side script to run. }); });//this works finr for disableing the button //how to enable the button from disabled to enable after my server side event as executed
//Server side events protected void Button1_Click(object sender, EventArgs e) { try { } catch() { } finally { //once my control reaches here i need to enable my save from disabled to enabled stae // can we do this in jQuery } } looking for this code from PAST 2 DAYS any solution on this would be great thank you thank you