Comments on: jQuery Tabs http://jqueryfordesigners.com/jquery-tabs/ Tutorials and screencasts Thu, 22 Sep 2011 12:58:42 +0000 hourly 1 http://wordpress.org/?v=3.3.1 By: Victor Duwon Jackson http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7901 Victor Duwon Jackson Wed, 07 Apr 2010 04:20:45 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7901 <p>You just saved me about 2 hours of work. Thanks.</p> You just saved me about 2 hours of work. Thanks.

]]>
By: Kamil http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7897 Kamil Mon, 05 Apr 2010 17:37:09 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7897 <p>I have a total of 5 tabs. I would like to make the default tab highlighted based on the URL parameter. For example if my URL has &tab=3, I would like to make the 3rd tab highlighted. How can I do that?</p> I have a total of 5 tabs. I would like to make the default tab highlighted based on the URL parameter. For example if my URL has &tab=3, I would like to make the 3rd tab highlighted. How can I do that?

]]>
By: subreal http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7869 subreal Tue, 30 Mar 2010 07:32:57 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7869 <p>hi there...</p> <p>is it possible to get the # markups on click into the url ???</p> <p>greez :-)</p> hi there…

is it possible to get the # markups on click into the url ???

greez :-)

]]>
By: Pavel http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7832 Pavel Wed, 17 Mar 2010 12:23:00 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7832 <p>Thank you for such a good explanation . Nice tut. And it IS working in Mozilla.</p> Thank you for such a good explanation . Nice tut. And it IS working in Mozilla.

]]>
By: NEELA http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7342 NEELA Fri, 22 Jan 2010 14:25:54 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7342 <p>Hi, The j Query tabs very good to use,I used them in my applciation .It worked good for IE but it is not working in Mozilla .In mozilla iam unable to click on the second tab.we should add any special things for mozilla to use it.</p> <p>Waiting for reply...</p> Hi, The j Query tabs very good to use,I used them in my applciation .It worked good for IE but it is not working in Mozilla .In mozilla iam unable to click on the second tab.we should add any special things for mozilla to use it.

Waiting for reply…

]]>
By: Kevin http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7286 Kevin Wed, 20 Jan 2010 19:25:30 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7286 <p>Really enjoy your screencasts. Good pace, clean design, even some insight into how you troubleshoot problems (not in this one, but a later one).</p> Really enjoy your screencasts. Good pace, clean design, even some insight into how you troubleshoot problems (not in this one, but a later one).

]]>
By: Judd Dunagan http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7172 Judd Dunagan Fri, 08 Jan 2010 16:18:42 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7172 <p>Ok Guys I figure out how to make the 1st tab show and instead of selected, it will hover.</p> <pre><code> <script type="text/javascript" charset="utf-8"> $(function() { var tabContainers = $('div.tabs > div'); tabContainers.hide().filter('#first').show(); $('div.tabs ul.tabNavigation a').hover(function() { tabContainers.hide(); tabContainers.filter(this.hash).show(); $('div.tabs ul.tabNavigation a').removeClass('selected'); $(this).addClass('selected'); return false; }, function() { tabContainers.hide(); }); }); </script> </code></pre> Ok Guys I figure out how to make the 1st tab show and instead of selected, it will hover.

    <script type="text/javascript" charset="utf-8">
    $(function() {
        var tabContainers = $('div.tabs > div');
        tabContainers.hide().filter('#first').show();
    $('div.tabs ul.tabNavigation a').hover(function() {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('div.tabs ul.tabNavigation a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }, function() {
        tabContainers.hide();
    });
    });
   </script>
]]>
By: Judd Dunagan http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7171 Judd Dunagan Fri, 08 Jan 2010 16:06:45 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7171 <p>Ony,</p> <p>I believe this is what your are looking for,</p> <pre><code> <script type="text/javascript" charset="utf-8"> $(function() { var tabContainers = $('div.tabs > div'); tabContainers.hide(); $('div.tabs ul.tabNavigation a').hover(function() { tabContainers.hide(); tabContainers.filter(this.hash).show(); $('div.tabs ul.tabNavigation a').removeClass('selected'); $(this).addClass('selected'); return false; }, function() { tabContainers.hide(); }); }); </script> </code></pre> <p>What I need is for the 1st tab to show up and not hide all. Any ideas?</p> Ony,

I believe this is what your are looking for,

    <script type="text/javascript" charset="utf-8">
    $(function() {
        var tabContainers = $('div.tabs > div');
        tabContainers.hide();
    $('div.tabs ul.tabNavigation a').hover(function() {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('div.tabs ul.tabNavigation a').removeClass('selected');
        $(this).addClass('selected');
        return false;
    }, function() {
        tabContainers.hide();
    });
    });
   </script>

What I need is for the 1st tab to show up and not hide all. Any ideas?

]]>
By: Judd Dunagan http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7170 Judd Dunagan Fri, 08 Jan 2010 15:52:00 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7170 <p>Remy,</p> <p>1st I would like to thanks for the excellent post. I used the tabs on this page. http://www.georgeforemancooking.com/c-8-our-products.aspx They work great, I am having some trouble getting them to work on roll over instead of on selected. I would be greatful if you could point me in the right direction.</p> <p>Thanks, Judd</p> Remy,

1st I would like to thanks for the excellent post. I used the tabs on this page. http://www.georgeforemancooking.com/c-8-our-products.aspx They work great, I am having some trouble getting them to work on roll over instead of on selected. I would be greatful if you could point me in the right direction.

Thanks, Judd

]]>
By: ony http://jqueryfordesigners.com/jquery-tabs/comment-page-6/#comment-7119 ony Sat, 19 Dec 2009 20:17:41 +0000 http://jqueryfordesigners.com/jquery-tabs/#comment-7119 <p>Hi , thanks for the tutorial </p> <p>implemented it and works perfect but , just have one question :</p> <p>is it possible to hide all content of all 3 tabs on the page load , and only display and i click on a tab?</p> <p>hope u understand what i mean cose my english is bad ,</p> <p>Thanks.</p> Hi , thanks for the tutorial

implemented it and works perfect but , just have one question :

is it possible to hide all content of all 3 tabs on the page load , and only display and i click on a tab?

hope u understand what i mean cose my english is bad ,

Thanks.

]]>