User:Charlotte/nookipedia-timeless.js

From Nookipedia, the Animal Crossing wiki
< User:Charlotte
Revision as of 15:18, September 2, 2024 by Charlotte (talk | contribs)

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.
//Go to the search bar when the "/" key is pressed
mw.loader.using('mediawiki.util', function () {
    document.addEventListener('keydown', function (event) {
        // Check if the "/" key was pressed
        if (event.key === '/') {
            event.preventDefault();  // Prevent default behavior (e.g., typing "/" in an input)
            var searchInput = document.getElementById('searchInput');
            if (searchInput) {
                searchInput.focus();
            }
        }
    });
});