Difference between revisions of "MediaWiki:Common.js"

From Life After BOB Wiki
Jump to navigation Jump to search
Line 6: Line 6:
 
$( '.external' ).click( function (e) {
 
$( '.external' ).click( function (e) {
 
                 e.preventDefault();  
 
                 e.preventDefault();  
 +
                console.log(this);
 
        var otherWindow = window.open();
 
        var otherWindow = window.open();
                console.log(this);
 
 
//otherWindow.opener = null;
 
//otherWindow.opener = null;
 
//otherWindow.location = this;
 
//otherWindow.location = this;

Revision as of 14:28, 9 June 2021

/* Any JavaScript here will be loaded for all users on every page load. */

//open external links in new tab


	$( '.external' ).click( function (e) {
                e.preventDefault(); 
                console.log(this);
	        var otherWindow = window.open();
		//otherWindow.opener = null;
		//otherWindow.location = this;
		//return false;
	} );


mw.loader.using( 'mediawiki.api', function () { 
var params = {
		action: 'query',
		format: 'json',
		list: 'random',
		rnlimit: '1',
                rnnamespace:'0'
	},
	api = new mw.Api();

api.get( params ).done( function ( data ) {
	var randoms = data.query.random,
		r;
	for ( r in randoms ) {
		console.log( randoms[ r ].title);
	}
        var randomString = "<a href='http://lifeafterbob.wiki/view/"+randoms[0].title+"'>"+randoms[0].title+"</a>"
        $("#randompage").append(randomString);


} );


} )