Difference between revisions of "MediaWiki:Common.js"
From Yo-Kai Watch Wiki
(Created page with "→Any JavaScript here will be loaded for all users on every page load.: if ( mw.config.get( 'wgPageName' ) === 'Chatbox' ) { <script id="cid0020000129691298855" data-c...") |
|||
(20 intermediate revisions by the same user not shown) | |||
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. */ | ||
− | + | /* | |
− | if ( mw. | + | if ($('.mw-headline:first').length > 0) { |
− | + | console.log('exists') | |
+ | $('.mw-headline:first').parent().after('test test') | ||
+ | } else { | ||
+ | console.log('do not exist') | ||
+ | $('#firstHeading').after('test2 test2') | ||
} | } |
Latest revision as of 02:48, 4 January 2021
/* Any JavaScript here will be loaded for all users on every page load. */ /* if ($('.mw-headline:first').length > 0) { console.log('exists') $('.mw-headline:first').parent().after('test test') } else { console.log('do not exist') $('#firstHeading').after('test2 test2') }