Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: $(document).ready(function() { $('table.wikitable').css({ 'margin-left': 'auto', 'margin-right': 'auto', 'display': 'table', 'border-collapse': 'separate', 'width': '600px' →‎Specify the width as needed: }); });"
 
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {
$(document).ready(function() {

Revision as of 21:53, 12 November 2024


/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {
    $('table.wikitable').css({
        'margin-left': 'auto',
        'margin-right': 'auto',
        'display': 'table',
        'border-collapse': 'separate',
        'width': '600px' /* Specify the width as needed */
    });
});