12 lines
317 B
JavaScript
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);
|
|
}); |