User:Operator873/SimpleWPTab.js

// [[User:Djsasso/enWPTab.js]] Place credit where credit due. I imported to tinker with it.
// [[User:Krenair]] debugged and made the script work after I gave up

// Define "entabMainTab" variable before cloning it.
var entabMainTab = $('#left-navigation li:not(.selected)').slice(0,1).css('opacity','0.9');
 
// Clone main page tab
var entabTab = entabMainTab.clone(true).attr('id', entabMainTab.attr('id')+'-').css('opacity','0.9').removeClass('new');
 
// Construct URL for English Wikipedia
var entabURL = '//' + 'simple.wikipedia.org/wiki/' + mw.config.get('wgPageName');
 
// Set English Wikipedia tab URL, text, and title 
entabTab.find('a').attr('href', entabURL).empty().text('Simple English').attr('title', "Navigate to this page on Simple English Wikipedia");
 
// Get sandbox existence status via Ajax
new mw.ForeignApi( 'https://simple.wikipedia.org/w/api.php' ).get( {
	action: 'query',
	titles: mw.config.get( 'wgPageName' )
} ).done( function ( ret ) {
// Ajax function on data return: If 'missing' field is defined, page is missing, so add 'new' class to tab, which turns it red
	if (Object.keys( ret.query.pages )[0] == '-1') entabTab.addClass( 'new' );
} );

entabTab.insertAfter($('#left-navigation li').slice(0,1));
 
// ** Making tab red still doesn't work for some reason, haven't figured that out yet, 
// ** but the ajax url is correct as you can see if you navigate to it manually: 
// ** http://en.wikipedia.org/w/api.php?action=query&titles=monkey&format=xml

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.