Difference between revisions of "MediaWiki:Common.js"

From PKC
Jump to navigation Jump to search
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. */
$(function () {
var myElement = document.getElementById('mw-mywiki-example-1');
myElement.innerHTML = 'any HTML-customized';
}());


// First load Three.js
mw.loader.load( '/w/index.php?title=MediaWiki:Three.js&action=raw&ctype=text/javascript' );
// First load Animate.js
//mw.loader.load( '/w/index.php?title=MediaWiki:Animate.js&action=raw&ctype=text/javascript' );
// First load MediaWiki:Stats.module.js
//mw.loader.load( '/w/index.php?title=MediaWiki:Stats.module.js&action=raw&ctype=text/javascript' );
// First load Camera.js
//mw.loader.load( '/w/index.php?title=MediaWiki:Camera.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 () {
$('#mw-mywiki-example').html('any HTML-The Second Function');
var myElement = document.getElementById('mw-mywiki-example');
myElement.innerHTML = 'any HTML';
}());
}());


$(function () {
$(function () {
var myElement = document.getElementById('canvasClass');
$('#mw-mywiki-example').html('any HTML');
myElement.tag = 'Canvases';
//myElement.outerHTML = 'Canvas';
    myElement.innerHTML = '<canvas id="threejstarget" height=800 width=960>Canvas Changed<canvas>';
 
}());
}());

Revision as of 04:15, 7 January 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 Animate.js
//mw.loader.load( '/w/index.php?title=MediaWiki:Animate.js&action=raw&ctype=text/javascript' );

// First load MediaWiki:Stats.module.js
//mw.loader.load( '/w/index.php?title=MediaWiki:Stats.module.js&action=raw&ctype=text/javascript' );

// First load Camera.js
//mw.loader.load( '/w/index.php?title=MediaWiki:Camera.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';
}());


$(function () {
	$('#mw-mywiki-example').html('any HTML');
}());