Welcome to the RuneGlory Wiki, where we do our best to make your life easier!

You can use the search menu on the right side of the wiki (or at the bottom if you are on mobile) to search for the page you are looking for. The most popular pages can be found on the right side of the wiki aswell (or again at the bottom if you are on mobile).

Difference between revisions of "User:Jplayer"

From RuneGlory
Jump to: navigation, search
Line 6: Line 6:
  
 
<script>
 
<script>
 +
 
var para = document.createElement("p");
 
var para = document.createElement("p");
 
var node = document.createTextNode("This is new.");
 
var node = document.createTextNode("This is new.");
 
para.appendChild(node);
 
para.appendChild(node);
var element = document.getElementById("mw-page-base");
+
var element = document.getElementsByTagName("head")[0];
 
element.appendChild(para);
 
element.appendChild(para);
 +
 
</script>
 
</script>
  
  
 
</html>
 
</html>

Revision as of 13:06, 19 March 2016

6