MediaWiki:Common.js: Difference between revisions

From Lsdf
Jump to navigationJump to search
m (Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: jQuery(function($){ if ( mw.user.isAnon() ) { $('#p-tb').hide(); //id or class varies with skin }…")
(No difference)

Revision as of 22:53, 16 March 2014

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

jQuery(function($){ if ( mw.user.isAnon() ) {
    $('#p-tb').hide(); //id or class varies with skin
 } } );