/ Published in: jQuery
Just replace classic document.ready with pageLoad function as belows:
pageLoad function will called on all postback and partial postbacks. So it makes the jquery code no matter what :D
Even in update panel.
pageLoad function will called on all postback and partial postbacks. So it makes the jquery code no matter what :D
Even in update panel.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Replace this : $(document).ready(function(){ //Jquery Code }); With this : function pageLoad(sender, args){ //Jquery Code }