Sandbox: Difference between revisions

From Hidden Mickey Wiki

No edit summary
No edit summary
Line 1: Line 1:
<htmltag tagname="script" type="text/javascript">
<htmltag tagname="script" type="text/javascript">
document.body.insertAdjacentHTML(
document.addEventListener('DOMContentLoaded', function() {
   'beforeend',
   var p = document.createElement('p');
   '<p style="color: red; font-weight: bold; font-size: 16px;">Hello World from JS!</p>'
   p.style.color = 'red';
);
  p.style.fontWeight = 'bold';
  p.style.fontSize = '16px';
  p.innerText = 'Hello World from JS!';
  document.body.appendChild(p);
});
</htmltag>
</htmltag>

Revision as of 10:21, 1 October 2025