User:Kiokurashi/common.js

From IdleOn MMO Wiki
Revision as of 15:29, 4 June 2023 by Kiokurashi (talk | contribs)

Note: After publishing, 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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
$(document).ready(function(){
	var element = document.createElement("p"); // "p" is the type of element that will be created
	element.style = "color:blue"; // to modify attributes to the element that will be created, just type element.(attribute you want to modify) = "whatever value"
	element.contentText = "Text Here"; // this sets the innerHTML of the element that will be created to "Paragraph text"
	document.getElementById('user-tools').appendChild(element); // this adds the element to the page content
});