Skip to content Skip to sidebar Skip to footer

Jquery Easytabs - How To Make A Tab A Pop-up Link?

This is my navigation and I use easytabs jquery script:

Solution 1:

Change your easyTabs initialisation to:

$content.easytabs({
        tabs                :"> .navigation > ul > li:not(.external)",
        animate             : true,
        updateHash          : true,
        animationSpeed      :'normal',
    });

Then add a class of external to your CV link:

<ulclass="tabs"><li><ahref="#home">About Me</a></li><li><ahref="#cv"target="_blank"class="external">CV</a></li><li><ahref="#research">Research</a></li><li><ahref="#teaching">Teaching</a></li><li><ahref="#contact">Contact</a></li></ul>

Post a Comment for "Jquery Easytabs - How To Make A Tab A Pop-up Link?"