easy cash pay - Earn Online With AlAhmar.com.pk
let logoutButton = document.getElementById('logout');
logoutButton.addEventListener('click', function() {
$.ajax({
url: 'function.php',
type: 'POST',
dataType: 'json',
data: {
action: 'logout'
},
success: function(response) {
console.log(response);
if (response === "success") {
window.location.replace("login");
}
},
error: function(xhr, status, error) {
console.error(xhr.responseText);
}
});
});