Browser compatibility please give me answer......
window.onbeforeunload = beforeunload;
window.onunload = function() {
clearTimeout(showMsgTimer);
retrieveURL("/janus/Logout.do?param=removeUserManagementLocksForController");
But its not working inside the chrome browser only. Its working on IE & Firefox. In the Chrome browser even an alert inside the window.onunload = function()
will not get executed. How can I execute this one in Chrome. Is there any other way we can do it? (can't use the window.onbeforeunload = function()
also)