All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web.static.script.mcverify.js Maven / Gradle / Ivy

There is a newer version: 1.0.177
Show newest version
function onLoad() {
    const list = document.getElementById('verify');
    list.onclick = (e) => {
        const xmlHttp = new XMLHttpRequest()
        xmlHttp.open("POST", window.location, false)
        xmlHttp.setRequestHeader("Accept", "application/json")
        xmlHttp.send()

        if (xmlHttp.status === 200) {
            window.location = window.location.origin + window.location.pathname + '?success'
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy