MediaWiki:Mobile.js: Difference between revisions

From Clicklaw Wikibooks
Jump to navigation Jump to search
Created page with "All JavaScript here will be loaded for users of the mobile site: $(document).ready(function() { $('.navbox .navbox-group td').each(function() { var $navbox = $(this); $navbox.style.removeProperty('width'); }); });"
(No difference)

Revision as of 21:43, 21 October 2024

/* All JavaScript here will be loaded for users of the mobile site */

$(document).ready(function() {
    $('.navbox .navbox-group td').each(function() {
        var $navbox = $(this);
        $navbox.style.removeProperty('width');
    });
});