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

User:Anomie/hidespoilers.js

In today's world, User:Anomie/hidespoilers.js is a topic of constant debate and interest for a wide spectrum of people. From its impact on society to its relevance in popular culture, User:Anomie/hidespoilers.js has managed to capture the attention of people of all ages, genders and professions. Throughout history, User:Anomie/hidespoilers.js has been the object of study, analysis and discussion, which has led to a greater understanding of its implications and repercussions in different areas. In this article, we will explore the importance of User:Anomie/hidespoilers.js and how it has evolved over time, as well as its influence on the modern world.
/* Script to hide all possible spoiler in articles.
 *
 * If you want to use this script, simply add the following line to your monobook.js:
 
importScript('User:Anomie/hidespoilers.js'); // Linkback: ]
 
 * (Please keep the comment so I can see how many people use this). */

$(document).ready(function($){
    if(mw.config.get('wgNamespaceNumber')!=0 || mw.config.get('wgAction')!='view') return;

    var x=document.getElementById('jump-to-nav');
    if(!x) return;

    var d=document.createElement('DIV');
    x.parentNode.insertBefore(d,x.nextSibling);
    d.className='mw-collapsible mw-collapsed';
    d.style.border='none';

    x=document.createElement('DIV');
    d.appendChild(x);
    x.style.fontWeight='bold';
    x.style.textAlign='center';
    x.appendChild(document.createTextNode('The text below may contain spoilers'));

    x=document.createElement('DIV');
    d.appendChild(x);
    x.className='mw-collapsible-content';
    x.style.display='none';
    while(d.nextSibling) x.appendChild(d.nextSibling);

    $(d).makeCollapsible();
});