MediaWiki:Common.js

From dataZoa Wiki
Revision as of 06:21, 30 September 2016 by RB (Talk | contribs)

Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
/* Any JavaScript here will be loaded for all users on every page load. */
 
//the below does work!!
$(document).ready(function(){
$("h2").click(function(){
alert("The h2 was clicked.");
});
});
 
//testing to see whether I can load any function
function thisAlert() {$(document).ready(function(){
alert('this is an alert');
});
}
 
//testing external load