MediaWiki:Input.js: Difference between revisions

From Decimal Wiki
Jump to navigation Jump to search
(Created page with "$(function () { var myPlace = document.getElementById('tpl-example-placeholder'); myPlace.innerHTML = 'any HTML'; }()); $(function () { $('#mw-mywiki-example').html('any HTML'); }());")
 
(No difference)

Latest revision as of 16:42, 27 June 2024

$(function () {
	var myPlace = document.getElementById('tpl-example-placeholder');
	myPlace.innerHTML = 'any HTML';
}());
$(function () {
	$('#mw-mywiki-example').html('any HTML');
}());