What is the best way to ensure that events are rebound after an UpdatePanel callback?
Suggestions I've seen:
function pageLoad(sender, args){
//bind events here.
}
or
use the .live(eventType, handler)
method to initially bind the events
or
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function() {
//bind events here.
});