I'm working on JQuery UI tab Add/Remove function.

My html is

<div id="dialog" title="Tab data">
    <form>
        <fieldset class="ui-helper-reset">
            <label for="tab_title">Title</label>

            <input type="text" name="tab_title" id="tab_title" value="" class="ui-widget-content ui-corner-all" />
            <label for="tab_content">Content</label>
            <textarea name="tab_content" id="tab_content" class="ui-widget-content ui-corner-all"></textarea>
        </fieldset>
    </form>
</div>

<button id="add_tab">Add Tab</button>

<div id="tabs">
    <ul>

    </ul>

</div>

My JQuery is

$(function() {
        var $tab_title_input = $( "#tab_title"),
            $tab_content_input = $( "#tab_content" );
        var tab_counter = 2;

        // tabs init with a custom tab template and an "add" callback filling in the content
        var $tabs = $( "#tabs").tabs({
            tabTemplate: "<li><a href='#{href}'>#{label}</a> <span class='ui-icon ui-icon-close'>Remove Tab</span></li>",
            add: function( event, ui ) {
                var tab_content = $tab_content_input.val() || "Tab " + tab_counter + " content.";
                $( ui.panel ).append( "<p>" + tab_content + "</p>" );
            }
        });

        // modal dialog init: custom buttons and a "close" callback reseting the form inside
        var $dialog = $( "#dialog" ).dialog({
            autoOpen: true,
            modal: true,
            buttons: {
                Add: function() {
                    addTab();
                    $( this ).dialog( "close" );
                },
                Cancel: function() {
                    $( this ).dialog( "close" );
                }
            },
            open: function() {
                $tab_title_input.focus();
            },
            close: function() {
                $form[ 0 ].reset();
            }
        });

        // addTab form: calls addTab function on submit and closes the dialog
        var $form = $( "form", $dialog ).submit(function() {
            addTab();
            $dialog.dialog( "close" );
            return false;
        });

        // actual addTab function: adds new tab using the title input from the form above
        function addTab() {
            var tab_title = $tab_title_input.val() || "Tab " + tab_counter;
            $tabs.tabs( "add", "#tabs-" + tab_counter, tab_title );
            tab_counter++;
        }

        // addTab button: just opens the dialog
        $( "#add_tab" )
            .button()
            .click(function() {
                $dialog.dialog( "open" );
            });

        // close icon: removing the tab on click

        $( "#tabs span.ui-icon-close" ).live( "click", function() {
            var index = $( "li", $tabs ).index( $( this ).parent() );
            $tabs.tabs( "remove", index );
        });
    });

What I want is to switch to newly created tab Automatically & also position add "new tab" button next to tabs like we have in browsers these days.

I tried inserting "Add tab" button inside tabs <ul> but then, tab doesn't work properly.

Any Help would be appreciated !

UPDATE

Here is working solution : http://jsfiddle.net/SjW4f/20/

link|improve this question

Just looking at it. – Alistair Laing Sep 22 '11 at 7:59
feedback

2 Answers

up vote 1 down vote accepted

Here is it: http://jsfiddle.net/SjW4f/21/

You will need to work a little with reordering tabs on add event to make add tab the lastest.

UPDATED TO WORKING VERSION

link|improve this answer
Hey Samich, Thanks for your answer but newly created tabs are not showing content... I mean first created tab shows content but 2,3,4.... fails to show content.. – MANnDAaR Sep 22 '11 at 8:24
I guess there is problem with anchor tag around '+' If you remove anchor tag, content loads perfectly.. – MANnDAaR Sep 22 '11 at 8:47
Checkout lates version. I suppose it works like you want. – Samich Sep 22 '11 at 9:18
Yup! Thanks for your time & efforts ! I have combined Your & Alistair's answer to achieve what I want. Here it is jsfiddle.net/SjW4f/20 – MANnDAaR Sep 22 '11 at 9:28
1  
Hey, I've updated the title of the question to more understandable for search reasons. – Samich Sep 22 '11 at 10:07
show 2 more comments
feedback

http://jsfiddle.net/SjW4f/4/ I changed two things. I added a 'select' method after you add the tab. I also changed your live event to a delegate event.

link|improve this answer
Thanks Alistair ! This works perfect ! – MANnDAaR Sep 22 '11 at 9:32
feedback

Your Answer

 
or
required, but never shown

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