MediaWiki:Common.js: Difference between revisions

From Riverview Legal Group
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: $(document).ready( function() { var tree = $('#sidebartree); $('#p-logo').after( tree.html() );...")
 
mNo edit summary
Line 6: Line 6:
   tree.remove();
   tree.remove();
   /*tree.html('');*/
   /*tree.html('');*/
});
$(document).ready(function(){
    $('.mw-references-wrap').before('<h2>References</h2>');
});
});

Revision as of 15:54, 1 June 2020

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

$(document).ready( function() {
  var tree = $('#sidebartree);
  $('#p-logo').after( tree.html() );
  tree.remove();
  /*tree.html('');*/
});

$(document).ready(function(){
    $('.mw-references-wrap').before('<h2>References</h2>');
});