function disableBackButton()
{
window.history.forward();
}
setTimeout(“disableBackButton()”, 0);
1. And Go to Html Page
2. Put the body onunload section area Below Code :
<body onUnLoad = “disableBackButton();”>
🙂
function disableBackButton()
{
window.history.forward();
}
setTimeout(“disableBackButton()”, 0);
1. And Go to Html Page
2. Put the body onunload section area Below Code :
<body onUnLoad = “disableBackButton();”>
🙂