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
No edit summary
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() {
Line 6: Line 5:
         'margin-right': 'auto',
         'margin-right': 'auto',
         'display': 'table',
         'display': 'table',
         'border-collapse': 'separate',
         'border-collapse': 'separate'
        'width': '600px' /* Specify the width as needed */
     });
     });
});
});

Latest revision as of 21:19, 14 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'
    });
});