MediaWiki:Common.js: Difference between revisions

From Ultima Online Forever Wiki
Jump to: navigation, search
(Added PetControll.js to imports.)
 
(Added other method as jquery seems to do nothing.)
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. */
importScript('MediaWiki:PetControll.js');
importScript('MediaWiki:PetControll.js');
(function () {
  var myElement = document.getElementById('pet-controll-calculator');
  myElement.innerHTML = '<b>This is some Test!</b>';
}());

Revision as of 06:04, 20 September 2014

/* Any JavaScript here will be loaded for all users on every page load. */
importScript('MediaWiki:PetControll.js');

(function () {
 
  var myElement = document.getElementById('pet-controll-calculator');
  myElement.innerHTML = '<b>This is some Test!</b>';
 
}());