MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
(Replaced content with "→Any JavaScript here will be loaded for all users on every page load.: ") Tag: Replaced |
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. */ | ||
/* Taken from MD wiki lol */ | |||
$('.mw-wiki-logo').append( | |||
$('<a/>').addClass('hover-community-header-wrapper') | |||
.append($('<div/>') | |||
.addClass('message') | |||
.text('Click here to view the latest episode!') | |||
) | |||
.attr('href', 'https://www.youtube.com/watch?v=MFxGcb_XuT0') | |||
); |
Revision as of 13:16, 2 January 2024
/* Any JavaScript here will be loaded for all users on every page load. */ /* Taken from MD wiki lol */ $('.mw-wiki-logo').append( $('<a/>').addClass('hover-community-header-wrapper') .append($('<div/>') .addClass('message') .text('Click here to view the latest episode!') ) .attr('href', 'https://www.youtube.com/watch?v=MFxGcb_XuT0') );