Files
FarmToAAS/html/assets/js/home.js
2026-01-21 17:19:19 +07:00

15 lines
424 B
JavaScript

$(document).ready(function() {
// Your code here
console.log("home.js is loaded and ready.");
$('#logoutbtn').on('click', function() {
// Clear session storage on logout
fetch('/logout').then(() => {
window.location.href = '/login.html';
});
});
});
$(window).on('beforeunload', function() {
console.log("User is leaving home.html");
// Your cleanup code here
});