website/modules/contrib/webform/js/webform.form.disable_backdfb4.js
2023-09-30 09:40:37 +02:00

17 lines
349 B
JavaScript

/**
* @file
* JavaScript to disable back button.
*/
(function () {
'use strict';
// From: http://stackoverflow.com/questions/17962130/restrict-user-to-refresh-and-back-forward-in-any-browser
history.pushState({page: 1}, 'Title 1', '#no-back');
window.onhashchange = function (event) {
window.location.hash = 'no-back';
};
})();