MediaWiki:Common.js: Difference between revisions

Agros urbe non clamaten
No edit summary
No edit summary
Line 5: Line 5:
         // Check the current page title
         // Check the current page title
         if (mw.config.get('wgPageName') === 'Wiki_Visualized') {
         if (mw.config.get('wgPageName') === 'Wiki_Visualized') {
             console.log("This code runs only on the specified page.");
             console.log(mw.config.get('wgPageName'));  
             // Your custom JavaScript code here
             // Your custom JavaScript code here
         }
         }
     });
     });
});
});

Revision as of 00:20, 23 November 2024

/* Any JavaScript here will be loaded for all users on every page load. */

mw.loader.using('mediawiki.util', function () {
    $(document).ready(function () {
        // Check the current page title
        if (mw.config.get('wgPageName') === 'Wiki_Visualized') {
            console.log(mw.config.get('wgPageName')); 
            // Your custom JavaScript code here
        }
    });
});