Problem adding and removing a jquery tab to the existing tabs dynamically.
- by kranthi
hi everyone,
I have a href tag, upon clicking it a new jquery tab is added to the existing tabs,using the following js.
$(function() {
//DECLARE FUNCTION: removetab
var removetab = function(tabselector, index) {
$(".removetab").click(function(){
$(tabselector).tabs('remove',index);
});
…