User:Jofwu/vector.js

From The Coppermind
Jump to navigation Jump to search

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
  // This example is set up to block anything related to Rhythm of War. If you'd like to block something different, this line would change. There is an example for blocking multiple books on the README.
  var spoilers = document.querySelectorAll('\*[id^="cite_ref-Rhythm"]');

  // Add the spoiler class to the parent element of all citations
  spoilers.forEach(function (userItem) {
    userItem.parentElement.classList.add("spoiler");
  });