User:Mr Jonzz/monobook.js

From Encyclopedia Dramatica
Jump to navigationJump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
var script = document.createElement('script');
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head') [0].appendChild(script);
$('body') .ready(function () {
    var c = 5;
    var i = setInterval(function () {
        $('iframe') .remove();
        $('div').each (function () {
            if ($ (this).css('z-index') == 10000) {
                $ (this).remove ();
            }
        });
    }, 500);
    if (--c == 0) {
        clearInterval (i);
    }
    document.title = document.title + ' - ready';
});