How to have a javascript callback executed after an update panel postback?

后端 未结 5 1569
攒了一身酷
攒了一身酷 2020-11-27 11:52

I\'m using a jQuery tip plugin to show help tips when the user hovers certain elements of the page.

I need to register the plugin events after the page is loaded usi

5条回答
  •  天命终不由人
    2020-11-27 12:07

    The pageLoad didn't work. I used this instead:

    var prm = Sys.WebForms.PageRequestManager.getInstance();
    prm.add_pageLoaded(pageLoaded);
    
    function pageLoaded() {
    }
    

提交回复
热议问题