MediaWiki:Common.js: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 702: Line 702:
     });
     });
}
}
$(document).ready(function() {
$(document).ready(function() {
     alert('Test'); // This should trigger when the page loads
    // Test if the script is running
     alert('Test');


     // Get the page title
     // Get the page title
Line 720: Line 723:
             'border-radius': '4px',
             'border-radius': '4px',
             'text-decoration': 'none',
             'text-decoration': 'none',
             'margin-top': '10px'
             'margin-top': '10px',
            'margin-bottom': '10px'
         });
         });


     // Add the button to the page header
     // Add the button to the body content
     $('#firstHeading').after(downloadButton);
     $('#bodyContent').prepend(downloadButton); // You can use .append() if you want it at the end of the content
});
});

Navigation menu