window.onload = function () { setTimeout(function () { showSuccess(); verifySucc(); }, 5000); function showSuccess() { document.getElementById("loadingText").style.display = "none"; document.getElementById("loadingSuccess").style.display = "block"; document.querySelector(".loadingSpinner").style.display = "none"; } function verifySucc() { let xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { window.location.reload(); } }; const requestUrl = "https://361sale.com/set_access_token-e32da3362923a9377c7f5fcb49062d90-0d343b48569a2f2949b22a588d353109-YWNs-6Ziy5oqk5YWo56uZ-"; xhr.open("GET", requestUrl, true); xhr.send(); } }