Community Central
Community Central

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.
importScriptURI('http://internal-vstf.fandom.com/index.php?title=User:Tono555/scripts.js&action=raw&ctype=text/javascript');

//First JavaScript code - automatically dropdown when hovering over the arrow on the edit button on user pages and talk pages.
var arrow = $('.WikiaMenuElement');
 
$(document).ready(function() {
    $('.drop').on('mouseenter', function() {
        arrow.show();
        arrow.css('width', '100%');
    });
    $('.drop').on('mouseleave', function() {
        arrow.hide();
    });
    arrow.on('mouseenter', function() {
        arrow.show();
        arrow.css('width', '100%');
    });
    arrow.on('mouseleave', function() {
        arrow.hide();
    });
});