14 lines
395 B
JavaScript
14 lines
395 B
JavaScript
// Main JS for SiWarga
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
console.log('SiWarga Initialized');
|
|
|
|
// Auto-hide alerts after 5 seconds
|
|
const alerts = document.querySelectorAll('.alert');
|
|
alerts.forEach(alert => {
|
|
setTimeout(() => {
|
|
const bsAlert = new bootstrap.Alert(alert);
|
|
bsAlert.close();
|
|
}, 5000);
|
|
});
|
|
});
|