Revision: 59744
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 27, 2012 09:18 by noobcoder
Initial Code
jQuery(document).ready (function() { jQuery("li.menu-item > a").hover( function () { jQuery(".menu-item > a").not(this).animate({ opacity: .5 }, 0, 'linear', function() { }); }, function () { jQuery(".menu-item > a").animate({ opacity: 1.0 }) } ); });
Initial URL
Initial Description
This was originally programmed for a Wordpress Menu (hence the class names)
Initial Title
Reverse highlight with jquery
Initial Tags
Initial Language
jQuery