Category >
JAVASCRIPT
|| Published on :
Wednesday, June 17, 2015 || Views:
5841
||
disable the back button and rewrite the Url
<script type="text/javascript">
history.pushState(null, null, 'Action');
window.addEventListener('popstate', function (event) {
history.pushState(null, null, 'Action');
});
</script>