From 5ca8a4fc6c42e095b39d25d07c8362005225e4aa Mon Sep 17 00:00:00 2001 From: Ted Serbinski Date: Wed, 10 Jan 2007 05:36:57 +0000 Subject: [PATCH] #102423 fix anchor title from interfering with links, patch by quicksketch --- simplemenu.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/simplemenu.js b/simplemenu.js index 90c69430..54424f0c 100644 --- a/simplemenu.js +++ b/simplemenu.js @@ -9,9 +9,9 @@ $(document).ready(function() { // Drupal menu callback $('#menubar').load(basePath + 'menu_bar/menu', function() { - $('li', this).hover(function() { - $('ul', this).slideDown(200); - }, function() { } - ); + $('li', this).hover(function() { + $('ul', this).slideDown(200); + }, function() {}); + $('a', this).title(''); }); }); \ No newline at end of file