MediaWiki:Common.js: Difference between revisions

From Vintage Story Wiki
No edit summary
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. */
alert("Hey");
jQuery( document ).ready(function() {
  alert("Hello! I am an alert box!!");
});

Revision as of 11:31, 4 January 2017

/* Any JavaScript here will be loaded for all users on every page load. */
jQuery( document ).ready(function() {
   alert("Hello! I am an alert box!!");
});