up vote 0 down vote favorite
share [g+] share [fb]

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>');
link|improve this question
feedback

3 Answers

up vote 1 down vote accepted
$('#container-1 > ul').tabs().size();
link|improve this answer
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 '09 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 '09 at 3:28
solved it: $(tabContainer).tabs("length") < 1 – Martin Ongtangco Jul 24 '09 at 4:29
feedback

well here is the answer of all your problems :

    <!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Accordion</title>
        <link rel="stylesheet" href="css/smoothness/jquery-ui-1.8.9.custom.css">
        <link rel="stylesheet" href="css/accordionTheme2.css">
    </head>
    <body>
        <div id="container" class="ui-helper-clearfix">
            <div id="myAccordion">
                <h2><a href="#me" title="About Me">About Me</a></h2>
                <div>
                    <a href="accordionMe.html#me" title="Bio">My Bio</a>
                    <a href="accordionMe.html#me" title="Contact Me">Contact Me</a>
                    <a href="accordionMe.html#me" title="Resume">My Resume</a>
                </div>
                <h2><a href="#js" title="JavaScript">JavaScript</a></h2>
                <div>
                    <a href="accordionJS.html#js" title="Tutorials">Tutorials</a>
                    <a href="accordionJS.html#js" title="AJAX">AJAX</a>
                    <a href="accordionJS.html#js" title="Apps">Apps</a> 
                </div>
            </div>
            <div id="contentCol">
                <h1>Page 1</h1>
            </div>
        </div>
        <script language="JavaScript">
        <!--


        countmyaccordion=function(){ return $('div#myAccordion > h2').size()} //i count all h2 headers assigned to a header tab od accordion
        showlasttab=function(){ $('div#myAccordion:eq('+(countmyaccordion())+')').click() }


            addme=function(){
        $('div#myAccordion').accordion('destroy');
        newrow=$('div#myAccordion').append('<h2><a href="#js" title="JavaScript">JavaScript</a></h2><div><a href="accordionJS.html#js" title="Tutorials">Tutorials</a><a href="accordionJS.html#js" title="AJAX">AJAX</a><a href="accordionJS.html#js" title="Apps">Apps</a></div>');
        $('div#myAccordion').accordion();


//alert(countmyaccordion());
//showlasttab();
$('div#myAccordion').accordion('activate', countmyaccordion()-1);

    }
        //-->
        </script>
        <a href="JavaScript:addme();">ADD....</a>
        <script src="development-bundle/jquery-1.4.4.js"></script>
        <script src="development-bundle/ui/jquery.ui.core.js"></script>
        <script src="development-bundle/ui/jquery.ui.widget.js"></script>
        <script src="development-bundle/ui/jquery.ui.accordion.js"></script>
        <script>
            (function($){
                var accOpts = {
                    navigation: true ,
                    collapsible: true, 
                    autoHeight: false, 
                    active: false 
                };

                $("#myAccordion").accordion(accOpts);
            })(jQuery);
        </script>
    </body>
</html>
link|improve this answer
feedback

Just use

$('#selector >ul >li').size();

where "#selector" is the selector you have used to create the tabs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown