How do i run a javascript event after a postback within an updatepanel
Try this:
$.ajax({ beforeSend: function(){ // Handle the beforeSend event }, complete: function(){ // Handle the complete event } // ...... });