MediaWiki:Mobile.js: Difference between revisions

From Clicklaw Wikibooks
Jump to navigation Jump to search
(Undo revision 59627 by Admin (talk))
Tag: Undo
No edit summary
Line 2: Line 2:


$(document).ready(function() {
$(document).ready(function() {
    $('.navbox td').each(function() {
  $('.navbox td').each(function() {
        var $navbox = $(this);
    var $navbox = $(this);
        $navbox.style.removeProperty('width');
    if ($navbox[0].style != undefined) { $navbox[0].style.removeProperty("width"); }
    });
  });
});
});

Revision as of 22:44, 21 October 2024

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

$(document).ready(function() {
  $('.navbox td').each(function() {
    var $navbox = $(this);
    if ($navbox[0].style != undefined) { $navbox[0].style.removeProperty("width"); }
  });
});