Howrse Menu Click Not Hover

Changes the menu to on mouse click instead of hover.

目前為 2014-05-29 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Howrse Menu Click Not Hover
// @namespace   hmcnh
// @include    	http://*.howrse.*/*
// @require  	http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require  	https://gist.githubusercontent.com/BrockA/2625891/raw/waitForKeyElements.js
// @version     1.0
// @author      Janiss
// @description Changes the menu to on mouse click instead of hover.
// ==/UserScript==

$("#menu a[class*='highlight']").each(function(){ $(this).attr('onclick', $(this).attr('onmouseover')); $(this).removeAttr('onmouseover'); });