How to detect/track/check postback in javascript(e.g in asp.net Page.isPostBack())? Any suggestion?
Here is solution using jQuery:
$("a[href^='javascript:__doPostBack']").click(function () { alert('ok'); });