Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
(8 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
// First load Three.js | |||
mw.loader.load( '/w/index.php?title=MediaWiki:Three.js&action=raw&ctype=text/javascript' ); | |||
// First load CameraArray.js | |||
mw.loader.load( '/w/index.php?title=MediaWiki:CameraArray.js&action=raw&ctype=text/javascript' ); | |||
$(function () { | $(function () { | ||
var myElement = document.getElementById('mw-mywiki-example'); | |||
myElement.innerHTML = 'any HTML, comes from mediawiki js'; | |||
}()); | }()); | ||
$(function () { | $(function () { | ||
$('#mw-mywiki-example').html('any HTML - here'); | |||
}()); | }()); |
Latest revision as of 19:03, 11 October 2022
/* Any JavaScript here will be loaded for all users on every page load. */
// First load Three.js
mw.loader.load( '/w/index.php?title=MediaWiki:Three.js&action=raw&ctype=text/javascript' );
// First load CameraArray.js
mw.loader.load( '/w/index.php?title=MediaWiki:CameraArray.js&action=raw&ctype=text/javascript' );
$(function () {
var myElement = document.getElementById('mw-mywiki-example');
myElement.innerHTML = 'any HTML, comes from mediawiki js';
}());
$(function () {
$('#mw-mywiki-example').html('any HTML - here');
}());