Automatically reload the page on disconnect and handle errors such as "Server is full"
< Feedback on Moomoo.io Auto reloader
why bother when you could shorten the script to:var AutoReload = setInterval(function () { "disconnectedreload" == document.getElementById("loadingText").textContent && ((window.onbeforeunload = null), clearInterval(AutoReload), window.location.reload());});
Sign in to post a reply.
why bother when you could shorten the script to:
var AutoReload = setInterval(function () {
"disconnectedreload" == document.getElementById("loadingText").textContent &&
((window.onbeforeunload = null),
clearInterval(AutoReload),
window.location.reload());
});