Jump to content

User:The Transhumanist/LoadNextPage.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by The Transhumanist (talk | contribs) at 00:04, 19 July 2017 (add sandwiches). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// <syntaxhighlight lang="javascript">

/*

(Script under development - not yet functional)

LoadNextPage = Load Next Page

What it does: Loads the next page from the load list.

When completed,
this script will load the next page from the load list into the current window,
but will first ask if the user wants to leave the current page.

*/

// Start off with a bodyguard function to reserve mw and $ (see Explanatory notes on talk page).
( function ( mw, $ ) {

    // we can now rely on mw and $ within the safety of our “bodyguard” function, to mean 
    // "mediawiki" and "jQuery", respectively

    // ============== ready() event listener/handler ==============
    // below is jQuery short-hand for $(document).ready(function() { ... });
    // it makes the rest of the script wait until the page's DOM is loaded and ready
    $(function() {
        
        // During testing, so that alerts don't pop up all the time,
        // Run this script only if "Outline " is in the page title
		if (document.title.indexOf("Outline ") != -1) {

			// BODY OF PROGRAM GOES HERE

        }
    } );
}( mediaWiki, jQuery ) );


// </syntaxhighlight>