window.onbeforeunload=function();
is not working in chrome. It works for IE and Mozila but it not for chrome. Is there any another way to use window.onbeforeunload=function();
in chrome?
Please find the below code. Failure.jsp is not calling in Chrome. Thanks in advance.
window.onbeforeunload = function() {
window.location='Failure.jsp';
confirm("onbeforeunload>>>>>>>>>"+window.location);
}
Failure.jsp:
<body>
<h3> <b> Your session Expired</b></h3>
<% session.invalidate();
System.out.println("invalidate>>>>>>>>>>>>>>>>>");
%>
Click here to <a href="http://localhost:8080/myApplication">Relogin</a>
</body>