window.onbeforeunload = function (event) {
var message = 'Important: Please check before leave this page.'; if (typeof event == 'undefined') { event = window.event;} if (event) { event.returnValue = message;}
return message;
};
$(function(){ $("a").not('.cls').click(function () { window.onbeforeunload = null; }); });