function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
kkaalkkaal 

Select Tab from JS

I have a page organized with Tab components.

I need to control the Tabs from my program.

 

Is there a way to select Tabs from Javascript?

Pradeep_NavatarPradeep_Navatar

Try out the following JS(Jquery) :

 

       new Control.Tabs('ID of the Unordered list if u have given',

       { 

       hover: true  ;

       });

 

For More Information visit this link:  http://livepipe.net/control/tabs

 

Hope this helps.