I want to disable back button of any browser after Successful Login but not all pages
only next page after Login.I use Javascript but browser arrow seen
Code:-
function disableBackButton() {
window.history.forward()
}
disableBackButton();
window.onload = disableBackButton();
window.onpageshow = function (evt) { if (evt.persisted) disableBackButton() }
window.onunload = function () { void (0) }
but this Code forcefully back and that time back page seen
any Solution to disable back arrow of browser
Harshal PatilPosted Dec 7, 2016, 5:11 AM
script>
Vanama DineshPosted Nov 30, 2016, 3:39 AM
Brijesh RathorPosted Nov 24, 2016, 2:54 AM
Prashant KumarPosted Nov 22, 2016, 8:55 AM
Salman BegPosted Nov 9, 2016, 12:31 AM