NonInventPurchasingSystem/CPRNIMS.WebApps/wwwroot/JsFunctions/Account/noBackHistory.js
2026-01-20 07:44:30 +08:00

12 lines
317 B
JavaScript

$(document).ready(function () {
var i = 0;
var previous_hash = window.location.hash;
var x = setInterval(function () {
i++;
window.location.hash = "/noop/" + i;
if (i == 10) {
clearInterval(x);
window.location.hash = previous_hash;
}
}, 10);
});