Difference between revisions of "MediaWiki:Common.js"

From Encyclopedia of Scientonomy
Jump to navigation Jump to search
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
  
$(function () {
+
(function () {
  
 
var x = document.getElementsByClassName('_2392');
 
var x = document.getElementsByClassName('_2392');

Revision as of 21:44, 18 May 2018

/* Any JavaScript here will be loaded for all users on every page load. */

(function () {

var x = document.getElementsByClassName('_2392');
var i;
for (i = 0; i < x.length; i++) {
    x[i].style.display = "none";
}

}());