Difference between revisions of "MediaWiki:Mobile.js"

From Life After BOB Wiki
Jump to navigation Jump to search
(Created page with "→‎All JavaScript here will be loaded for users of the mobile site: //open external links in new tab $( '.external' ).click( function (e) { e.preventDefau...")
Tags: Mobile web edit Mobile edit
(No difference)

Revision as of 15:03, 9 June 2021

/* All JavaScript here will be loaded for users of the mobile site */
//open external links in new tab


	$( '.external' ).click( function (e) {
                e.preventDefault(); 
                console.log($(this).attr('href'));
                var url = $(this).attr('href'); 
                window.open(url, '_blank');
	} );


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);


} );


} )