File size: 720 Bytes
678b74d
 
23f7231
 
678b74d
23f7231
678b74d
23f7231
678b74d
23f7231
 
 
 
678b74d
 
e89990c
 
23f7231
678b74d
 
48659f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* custom.js */

Wait until the DOM is fully loaded
document.addEventListener('DOMContentLoaded', function () {
    // Target all links and buttons
    const links = document.querySelectorAll('a');

    links.forEach(link => {
        // Suppress the display of URLs in the browser status bar
        link.addEventListener('mouseover', function (event) {
            event.preventDefault();
            window.status = ''; // Clear the status bar
        });

        // Optionally disable pointer events for all links (comment this out if not needed)
       // link.style.pointerEvents = 'none';
       // link.style.cursor = 'default';
    });

    //console.log('Custom JS applied: URL hover behavior modified.');
});