MediaWiki:Common.js: Difference between revisions
MediaWiki interface page
More actions
Madammagicka (talk | contribs) No edit summary Tag: Manual revert |
No edit summary |
||
| Line 7: | Line 7: | ||
link.href = '/images/favicon.png'; | link.href = '/images/favicon.png'; | ||
document.getElementsByTagName('head')[0].appendChild(link); | document.getElementsByTagName('head')[0].appendChild(link); | ||
$('.clickable-box').on('click', function() { | |||
window.location.href = '/wiki/Page_Name'; | |||
}); | |||
Revision as of 10:37, 28 November 2025
/* Any JavaScript here will be loaded for all users on every page load. */
// Add favicon
var link = document.createElement('link');
link.rel = 'icon';
link.type = 'image/x-icon';
link.href = '/images/favicon.png';
document.getElementsByTagName('head')[0].appendChild(link);
$('.clickable-box').on('click', function() {
window.location.href = '/wiki/Page_Name';
});