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
Comment #1
yched commented+1. I'm also experiencing the tooltip issue, and it's pretty annoying :-)
Comment #2
m3avrck commentedThanks, fixed!
Comment #3
(not verified) commented