-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
58 lines (50 loc) · 2.37 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
document.addEventListener('DOMContentLoaded', function() {
console.log('DOM loaded');
// Try to update the date only if the element exists
const dateElement = document.getElementById('current-date');
if (dateElement) {
displayLastModifiedDate();
}
// Initialize all dropdowns closed by default
const dropdownHeaders = document.querySelectorAll('.dropdown-header');
console.log('Found dropdown headers:', dropdownHeaders.length);
dropdownHeaders.forEach(header => {
console.log('Processing header:', header.textContent.trim());
const content = header.nextElementSibling;
// Initially close all dropdowns
if (content && content.classList.contains('dropdown-content')) {
content.classList.remove('active');
}
// Add click event listener to all headers
header.addEventListener('click', function(e) {
console.log('Header clicked:', this.textContent.trim());
// Toggle active class on header
this.classList.toggle('active');
// Toggle content visibility
const content = this.nextElementSibling;
if (content && content.classList.contains('dropdown-content')) {
content.classList.toggle('active');
console.log('Toggled dropdown content');
}
});
});
});
// Function to display the last modified date
function displayLastModifiedDate() {
// This date should be manually updated when the site content changes
const lastModified = "30/03/2025"; // Format: DD/MM/YYYY
// Alternative approach: use the document's last modified date (less reliable for local files)
// Uses the HTML file's last modified date if available
if (!lastModified) {
try {
const lastModifiedDate = new Date(document.lastModified);
const options = { day: '2-digit', month: '2-digit', year: 'numeric' };
document.getElementById('current-date').textContent = lastModifiedDate.toLocaleDateString('en-GB', options);
} catch (e) {
console.error("Couldn't determine last modified date:", e);
document.getElementById('current-date').textContent = "Unknown date";
}
} else {
document.getElementById('current-date').textContent = "Last updated: " + lastModified;
}
}