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

User:Technical 13/Scripts/Enhanced "What links here".js

In today's world, User:Technical 13/Scripts/Enhanced "What links here".js occupies a central place in society. Whether on a personal, professional or cultural level, User:Technical 13/Scripts/Enhanced "What links here".js has a significant impact on our lives. Throughout history, User:Technical 13/Scripts/Enhanced "What links here".js has been the subject of study, debate and controversy, which demonstrates its relevance in different areas. In this article, we will explore the role of User:Technical 13/Scripts/Enhanced "What links here".js and its influence on various aspects of society. From its impact on politics to its involvement in technology, User:Technical 13/Scripts/Enhanced "What links here".js plays a crucial role in the way we interact with the world around us. Additionally, we will examine how User:Technical 13/Scripts/Enhanced "What links here".js has evolved over time and how it continues to be a topic of interest today.
/******************************************************************************************************************/
/*                                         Enhanced "What links here" script                                      */
/*                                                                                                                */
/*   author:        User:Technical_13                                                                             */
/*   source:        http://en.wikipedia.orghttps://wiki386.com/en/User:Technical_13/Scripts/Enhanced_"What_links_here".js          */
/*   documentation: http://en.wikipedia.orghttps://wiki386.com/en/User:Technical_13/Scripts/Enhanced_"What_links_here"  (redlink)  */
/*   contact:       http://en.wikipedia.orghttps://wiki386.com/en/User_talk:Technical_13                                           */
/*   license:       CC-BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0/)                                 */
/******************************************************************************************************************/

// Look for "What links here" in the toolbox
if (mw.config.get('wgNamespaceNumber') >= 0 && $('#t-whatlinkshere').length === 0) {
    alert('Missing "What links here" in the side menu! Contact script creator for assistance.');
//  return;
} else {

/*/ Start process
$('#t-whatlinkshere').load(function () {
*/
// Build arrays
    $.ajax({
        url: mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/api.php?action=query&meta=siteinfo&siprop=namespaces&format=json',
        dataType: 'json',
        async: false,
        success: function (siResponse) {
            var i = 0;
            for (var ns in siResponse.query.namespaces) {
                if (siResponse.query.namespaces.id > -1) {
// Define namespace number
                    nsPos = siResponse.query.namespaces.id;
// Define namespace displayed name
                    nsPos = siResponse.query.namespaces.nodeValue;
// Pull number of links for current namespace up to 500
                    $.ajax({
                        url: mw.config.get('wgServer') + mw.config.get('wgScriptPath') + '/api.php?action=query&list=backlinks&bllimit=500&blnamespace=' + nsNum + '&bltitle=' + mw.config.get('wgPageName') + '&format=json',
                        dataType: 'json',
                        async: false,
                        success: function (blResponse) {
// Define number of links for current namespace up to 500
                            bl = blResponse.query.backlinks.length;
                            if (isNaN(bl) ){
                              bl = 0;
                            }
if(typeof nsPos !== 'undefined') {
                            nsPos = bl;
}
                        }
                    });
// TRON
if(typeof nsPos !== 'undefined') {
alert(i + ' =>  + ', ' + nsPos + ', ' + nsPos + ']');
}
// TROFF
                    i++;
                }
            }
        }
    });
// for now //});
}