MediaWiki:Common.js
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
// Run this code only on the Special:AllPages page
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Allpages' ) {
$( function() {
// Regular expression to test if a title is *only* digits
var numericRegex = /^[0-9]+$/;
// Iterate over all links in the main content area
$( '#mw-content-text a' ).each( function() {
var title = $( this ).attr( 'title' );
if ( title && numericRegex.test( title ) ) {
// Find the parent list item and hide it
$( this ).closest( 'li' ).hide();
}
} );
} );
}