Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
$(function () { | $(function () { | ||
$('#mw-mywiki-example').html('any HTML-The Second Function'); | $('#mw-mywiki-example').html('any HTML-The Second Function'); | ||
}()); | |||
$(function () { | |||
$('#canvasClass').outerHTML('Canvas'); | |||
}()); | }()); |
Revision as of 07:44, 6 January 2022
/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
var myElement = document.getElementById('mw-mywiki-example-1');
myElement.innerHTML = 'any HTML-customized';
}());
$(function () {
$('#mw-mywiki-example').html('any HTML-The Second Function');
}());
$(function () {
$('#canvasClass').outerHTML('Canvas');
}());