Hi,

I noticed a minor bug with jquery tooltips. When you have a views with AJAX enabled and an exposed filters, when you filter your content with it, jquery tooltip don't work anymore.

I think there is a javascript conflict somewhere.

Regards,

zmove

Comments

yannickoo’s picture

Category: bug » support

You just need Drupal.behaviours:

if (Drupal.jsEnabled) { 
 Drupal.behaviors.jtooltip = function(context) {
  $("a").Tooltip({ 
   delay: 0,
   track: true, 
   showURL: false, 
   showBody: "; " 
  }); 
 }; 
}

Yannick

dawehner’s picture

Category: support » bug

This indeed a bug.

yannickoo’s picture

Category: support » bug
Status: Active » Fixed
yannickoo’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.