Toggle menu
20
62
5
836
Irontide Fantasy Roleplay
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 8: Line 8:
document.getElementsByTagName('head')[0].appendChild(link);
document.getElementsByTagName('head')[0].appendChild(link);


$('.clickable-box').on('click', function() {
$(document).ready(function () {
    window.location.href = '/wiki/Page_Name';
    $('.clickbox').on('click', function () {
        window.location.href = $(this).data('target');
    });
});
});

Revision as of 10:38, 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);

$(document).ready(function () {
    $('.clickbox').on('click', function () {
        window.location.href = $(this).data('target');
    });
});