Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

links inside tab body #3

Open
joomlachamp opened this issue Aug 14, 2013 · 5 comments
Open

links inside tab body #3

joomlachamp opened this issue Aug 14, 2013 · 5 comments

Comments

@joomlachamp
Copy link

If you have a link inside the tab body and you click it, tabulous gives it the "tabulous_active" class.

I have checked it with the demo files of your downloadable package.

Thank you.


Update

I change the line 29
from: var links = this.$elem.find('a');
to: var links = this.$elem.children('ul').find('a');

Probably it isn't the best solution, but for now works ok with the code.

@cedriccharles4
Copy link

Same issue here ! Could you please update your plugin ? Thanks

@axi
Copy link

axi commented Feb 18, 2014

+1, but thanks anyway for your tabulous plugin
And joomlachamp solution works fine

@guideX
Copy link

guideX commented Apr 29, 2015

In tabulous.js, replace the following ..
var links = this.$elem.find('a');

-- with --
var links = this.$elem.find('a.tabulous_a');

then be sure to add class="tabulous_a" to your tab links...

For example:

  • Blah!
  • @Fischer82
    Copy link

    Hi there, I do have the same issue, Joomlachamps solution works for the last tab, but not for the first in the list. Any Ideas?

    thanks

    Florian

    Solved the issue...

    Added a
    div#tabs-1 {
    z-index: 99999;
    }
    to the css

    @guideX
    Copy link

    guideX commented Jun 26, 2015

    That's better than altering tabulous core I guess

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    None yet
    Projects
    None yet
    Development

    No branches or pull requests

    5 participants