If you're not quick about selecting a menu item, the title 'tooltips' in Firefox can get pretty annoying since rolling over one immediately collapses the entire menu structure. Here's a one liner that removes the title from menu items.

Index: menu_bar.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/menu_bar/menu_bar.js,v
retrieving revision 1.1
diff -u -r1.1 menu_bar.js
--- menu_bar.js	18 Sep 2006 21:54:19 -0000	1.1
+++ menu_bar.js	10 Dec 2006 02:28:03 -0000
@@ -13,5 +13,6 @@
         $('ul', this).slideDown(200);
       }, function() { }
     );
+    $('a', this).title('');
   });
 });
\ No newline at end of file

Comments

yched’s picture

+1. I'm also experiencing the tooltip issue, and it's pretty annoying :-)

m3avrck’s picture

Status: Needs review » Fixed

Thanks, fixed!

Anonymous’s picture

Status: Fixed » Closed (fixed)