April 12, 2022 8:39am
IP tracking code added to IWS
<script>
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log(‘done’);
}
};xhttp.open(“GET”, “https://iwantsalary.com/iws_user_log.php?orig=”+ window.location.href, true);
xhttp.send();
</script>