MediaWiki:Common.js: Difference between revisions
Appearance
Created page with "→Any JavaScript here will be loaded for all users on every page load.: $(document).ready(function() { $(".item-bonus-table").each(function() { var table = $(..." |
No edit summary |
||
Line 5: | Line 5: | ||
$(".item-bonus-table").each(function() { | $(".item-bonus-table").each(function() { | ||
var table = $(this); | var table = $(this); | ||
table.find("th") | table.find("th").text("table header test"); | ||
}); | }); | ||
}); | }); |
Revision as of 17:51, 19 August 2018
/* Any JavaScript here will be loaded for all users on every page load. */ $(document).ready(function() { $(".item-bonus-table").each(function() { var table = $(this); table.find("th").text("table header test"); }); });