dynamic jquery tabs add update
Loading
dynamic jquery tabs add update
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Naimish MakwanaPosted Mar 26, 2024, 4:54 AM
You can dynamically add, update, and delete jQuery tabs. Here’s a basic example of how you can do it:
This code initializes a set of jQuery tabs, adds a new tab with a specified title and content, updates the title and content of an existing tab, and deletes a tab12.
Please note that as of jQuery UI 1.9, the
addandremovemethods have been deprecated and in jQuery UI 1.10 they have been removed2. Therefreshmethod is used instead2.Remember to replace the
tabTitle,tabContent, andindexvariables with your own values. Also, ensure that jQuery and jQuery UI are properly included in your project1.Ref Link : https://www.c-sharpcorner.com/article/dynamic-jquery-tabs-add-update-delete-and-sorting/
Thanks