_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:The Transhumanist/StripSearchSimple.js

Today we are going to talk about User:The Transhumanist/StripSearchSimple.js, a topic that has captured the attention of many people in the last decade. Since its emergence, User:The Transhumanist/StripSearchSimple.js has generated great interest in different areas, from science to popular culture. In this article, we will explore the different aspects of User:The Transhumanist/StripSearchSimple.js, from its impact on society to the latest research on the topic. We will discover how User:The Transhumanist/StripSearchSimple.js has evolved over time and how it has influenced people in different ways. Additionally, we will examine some of the controversies and debates that have arisen around User:The Transhumanist/StripSearchSimple.js, and how these discussions have shaped our understanding of the topic. In summary, this article will offer a comprehensive and broad overview of User:The Transhumanist/StripSearchSimple.js, providing readers with a solid and up-to-date understanding of this fascinating topic.
// <syntaxhighlight lang="javascript">

/* StripSearchSimple.js: strips Wikipedia search results down to bare pagenames. For vector skin only.

Version 1.0 &ndash; This script is operational.

Brief comments are provided within the sourcecode below. For extensive explanatory 
notes on what the source code does and how it works, see the Script's workshop on 
the talk page.

*/

// ============== Set up ==============

// Start off with a bodyguard function to reserve the aliases mw and $
( 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() {
        
		// ============== activation filters ==============
        // Only activate on Vector skin
        if ( mw.config.get( 'skin' ) === 'vector' ) {

	        // Run this script only if " - Search results - Wikipedia" is in the page title
			if (document.title.indexOf(" - Search results - Wikipedia") != -1) {

				// End of set up
			
        	    // =================== Prep work =====================
				
				// Variable declarations, etc., go here
				// None needed in this script

            	// ================= Core program ================= 

                $( function() {

		    		// Remove interwiki results
					$('#mw-interwiki-results').remove();

				    // hide elements by class per http://api.jquery.com/hide
                    $( ".searchalttitle" ).hide();
                    $( ".searchresult" ).hide();
                    $( ".mw-search-result-data" ).hide();

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