Sandbox: Difference between revisions

From Hidden Mickey Wiki

No edit summary
(Blanked the page)
Tags: Blanking Manual revert
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
<htmltag tagname="script" type="text/javascript">
document.addEventListener('DOMContentLoaded', function() {
  // Find the main content container
  var content = document.getElementById('mw-content-text');
  if (!content) {
    console.warn('Main content container not found!');
    return;
  }


  // Create the red text paragraph
  var p = document.createElement('p');
  p.style.color = 'red';
  p.style.fontWeight = 'bold';
  p.style.fontSize = '16px';
  p.innerText = 'Hello World from JS inside Medik skin!';
  // Append it inside the main content
  content.appendChild(p);
});
</htmltag>

Latest revision as of 10:53, 8 October 2025