self_Hosting_website/my_space/assets/js/visitor_count.js
2024-06-03 03:05:13 +05:30

19 lines
496 B
JavaScript

document.addEventListener("DOMContentLoaded", function() {
fetch("/data/visitor_count.json")
.then(response => response.json())
.then(data => {
data.count++;
document.getElementById("visitorCount").innerText = data.count;
fetch("/data/visitor_count.json", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(data)
});
})
.catch(error => console.error("Error:", error));
});