Brilliant module - One of my favorites.

I was wondering what technique you would recommend in order to switch tabs by just hovering the mouse over the title, such as done on http://www.ibm.com

Many thanks!

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Mark Linden’s picture

*bump*

Pasqualle’s picture

Version: 5.x-1.3 » 6.x-2.x-dev
Component: Miscellaneous » Code
Flying Drupalist’s picture

Subscribe

Pasqualle’s picture

Assigned: Unassigned » Pasqualle
Status: Active » Needs review
FileSize
6.14 KB
Flying Drupalist’s picture

Patch can be applied against the latest dev as well?

This module is moving so fast!

Thanks!

Pasqualle’s picture

yes, the patch is against the latest dev. there is no other release :)

plsk’s picture

how to use patch for hover tabs ? how to apply ?

it's possible to use fading effect with javascript tools ?

by advance thank you

druvision’s picture

subscribing

Pasqualle’s picture

Status: Needs review » Needs work

this patch does not apply any more
I think instead of using the 'qt_bind_hover' class on the link, we should use Drupal.settings for the quicktab

fading effect: #327436: Fade or slide effect when changing tabs

Pasqualle’s picture

Version: 6.x-2.x-dev » 6.x-3.x-dev

Moving new features to 3.x version

dchaffin’s picture

What is the status of this? The last comments say not to use this patch any more and that this feature has been moved to 3.x version. Where can I find the 3.x version. Under "All Releases" all I can find is a new .info file.

Thanks.

Pasqualle’s picture

status: needs work..
the patch works (or worked), but I am not satisfied with the solution.
there is no 3.x version yet, it is just a categorization thing..

giorgio79’s picture

Is this still on the table? :)

yaho’s picture

Is that patch working or not?

Comment #9 + #10

Thanks

jay-dee-ess’s picture

Has anyone had any luck figuring this out? Thanks!

sammys’s picture

FileSize
4.02 KB

Here's an updated patch for latest 6.x-3.x.

sammys’s picture

FileSize
5.54 KB

Just realised hover wasn't supported for views in the patch I used. I added hover support for views to the attached patch.

CinemaSaville’s picture

Any chance this patch can be ported to the D7 version?

kingfisher64’s picture

I'd love to be able to hover over the a tab and accordion a to reveal the content.

Can someone who is confident they will be able to do it, release a d7 patch?

It would be great to see this in the next dev d7 version.

druvision’s picture

neraprojects’s picture

#556784: You can simply use jQuery's .hover() function. You can emulate a click.

Can you give me more info ? Please, i'm new at jquery and i'm trying , but i need more info please .
Any new information about this subject would be welcomed . Please .

**for D7

Adam Wood’s picture

We achieved this in D7 with the 'hover() function in the following way;

Custom Module with jQuery in;

jQuery(document).ready(function () {
  if (jQuery('#quicktabs-menu_categories').length > 0) {
    jQuery('#quicktabs-menu_categories .quicktabs-tabs li').each(function() {
      jQuery('a', this).bind({
        mouseenter: function(){
          jQuery(this).click();
        }
      });
    });
  }
});

Obviously you'll need to change 'quicktabs-menu_categories' to the quicktab that you wish to effect.

You could just put it in the instead if you wished...

We should have a working example of this to showcase in the next 3-4 weeks.

Adam Wood’s picture

As promised, you can find an example of this (in D7) here: http://highfrequencytraders.com/

The Quick Tab using this is within the 'News' menu item in a mega menu...

Jumoke’s picture

Hmn,,thanks for that tip Adam. However this doesn't work for me tho (can't figure why) I've cleared every cache, refreshed etc. And my page source shows the js file being loaded.

apaderno’s picture

Issue summary: View changes
Status: Needs work » Closed (outdated)

I am closing this issue, since it's for a Drupal version no longer supported.