vote up 0 vote down star

hi,

I'm using a dynamic jQuery tab widget to add/remove tabs generated programmatically.

How do I check through jQuery and count how many existing tabs are present in the widget?

I'm using this code, but it doesn't work:

$('#container-1 > ul').tabs('add', tabName, name);

var newTab;

if ($('#container-1 > li').size() < 0) {
    newTab = $(tabName).css('display', 'block')
} else {
    newTab = $(tabName).css('display', 'none');
}

newTab.html('<iframe src="ViewPatient.aspx?pname=' + name 
       + '" width="100%" frameborder="0" scrolling="no" height="300"></iframe>');
flag

57% accept rate

1 Answer

vote up 0 vote down check
$('#container-1 > ul').tabs().size();
link|flag
thanks, but this doesn't work on my setup here's my html <div id="container-1"> <ul> </ul> </div> </div> – Martin Ongtangco Jul 24 at 3:12
You need to make a selector that contains all of your tabs, then take the .size() of it. – Robert Harvey Jul 24 at 3:28
solved it: $(tabContainer).tabs("length") < 1 – Martin Ongtangco Jul 24 at 4:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.