Wednesday, 16 March 2016

Hide Go Back option in Browser at Javascript

Hide Go Back option in Browser at Javascript

Step1: add html code

<script type="text/javascript">
    history.pushState(null, null, '');
    window.addEventListener('popstate', function (event) {
        history.pushState(null, null, ' ');
    });
</script>

No comments: