Gday Matt,

Not sure if there is a way to ignore the TABS functions, but what
about just placing an onclick event.  Either directly on the link, or
bind it via jQuery onload.

Just add a class as a hook, like...
<li><a http="http://www.someothersite.com/"; rel="http://
www.someothersite.com/" class="offsite" ><span>My Third Tab</span></
a></li>

Then add in something like
$(".offsite").bind("click", function(){
 location.href='$(this).attr("rel")';
});

Its a little messy, but will do the trick for you if nobody knows a
better way.  The reason for doubling the HREF and REL attributes with
the same value is so that the link will still work if JS is absent.
On the other hand if JS is turned on the TABS plugin rewrites the href
so instead the value is pulled from the REL attribute.

Hope thats clear enough for you.

Cheers
Stephen

Reply via email to