File size: 443 Bytes
4fa301b
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
document.addEventListener('DOMContentLoaded', function() {
    // Add any shared JavaScript functionality here
    console.log('AutoBlog Master 3000 initialized');
    
    // Example: Track button clicks
    const buttons = document.querySelectorAll('button');
    buttons.forEach(button => {
        button.addEventListener('click', function() {
            console.log(`Button "${this.textContent.trim()}" clicked`);
        });
    });
});