🤯 50% Off! 700+ courses, assessments, and books

jQuery ASP.NET UpdatePanel Document Ready

Sam Deering
Share

jQuery Code Snippet to force the jQuery to force the pageLoad() function to be called on all postbacks even when using the update panel. Simply replace the document.ready with pageLoad function.

Replace this :

$(document).ready(function(){
  //Jquery Code
});

With this :

function pageLoad(sender, args){
  //Jquery Code
}