User:Mark Tannen/timeless.js: Difference between revisions

From Emmy The Robot Fandom Wiki
Content added Content deleted
No edit summary
No edit summary
Line 1: Line 1:
$(function () {
$(function () {
var myPlace = document.getElementById('tpl-example-placeholder');
myPlace.innerHTML = 'any HTML';
document.write('Hello, World!!!');
document.write('Hello, World!!!');
}());
}());

Revision as of 02:11, 26 November 2023

$(function () {
    var myPlace = document.getElementById('tpl-example-placeholder');
	myPlace.innerHTML = 'any HTML';
    document.write('Hello, World!!!');
}());