How in JSP can I add a check for pressing the back button, so what if the user pressed this button, a warning window would appear?

<%@ include file="../include/inc.jsp"%><script language="javascript"> window.onbeforeunload = function() { return "С этой страницы ой как не жалательно переходить назад, вы уверены что хотите этого, если вы перейдете вомзожно транзакция была завершена а вы повторно проведете платеж."; }; </script> 

Now I have implemented it this way, but it works when switching to any page.

    1 answer 1

    That's right, http://habrahabr.ru/post/141793/

    • but I would like to make it work only when you click the back button, and with other transitions it worked, but you can make it always notify except for one button how I can do it - J Mas