I'm looking to call a jQuery function after the page has loaded completely for the post back (after pressing a button).
Can anyone please tell me how to do that.
Tried this, but with no luck:
$("#<%= btnOK.ClientID %>").click(function (e) {
window.onload = function () {
$("#<%=UIGridViewUserTaskSearchResults.ClientID%>").tablesorter();
JqueryFunction();
}
});