I needed extarnal navigation for my jquery ui tabs.
I created links:
<a href="#fragment-1" id="pin1">
and add js code:
$("#pin1").click(function() {$("#tabs").tabs( "select" , 0 );});
$("#pin2").click(function() {$("#tabs").tabs( "select" , 1 );});
Unfortunately now the links don’t have active class. Is it possible to make it work like is in default tabs navigation?
Do you mean something like this: http://jsfiddle.net/petersendidit/4wQVD/3/