Difference between revisions of "MediaWiki:Common.js"

From PKC
Jump to navigation Jump to search
 
(4 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. */
$(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 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, comes from mediawiki js';
}());
}());


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

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');
}());