history.back()
// --------------------if history.back() not working---------------------
//instead of this
<a href="javascript:history.back();">back</a>
//do this
<a href="javascript:history.go(-1);">back</a>
history.back()
// --------------------if history.back() not working---------------------
//instead of this
<a href="javascript:history.back();">back</a>
//do this
<a href="javascript:history.go(-1);">back</a>
Disabale Back History On Browsers JavaScript Jquery
<script type = "text/javascript" >
jQuery(document).ready(function($) {
history.pushState(null, null, location.href);
window.onpopstate = function () {
history.go(1);
};
});
</script>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us