Lugarini
Lugarini

Reputation: 802

jQuery UI Tabs - How to add Tabs

I am using jQuery UI Tabs in my page...

$(function() {
    $( "#tabs" ).tabs();
});

exemple: http://jsfiddle.net/thiagoluga/hk9a89y1/

Now I want to remove my current tabs and add new Tabs... Is it possible?

Upvotes: 1

Views: 62

Answers (1)

Sachin Thapa
Sachin Thapa

Reputation: 3709

Here is a working example of dynamically adding and removing tabs.

Add/remove tabs using jquery

Hoping it helps.

Cheers !!

Upvotes: 1

Related Questions