<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Create Tabs Using jQuery</title>
	<atom:link href="http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery</link>
	<description>Life, Blogging, and WordPress</description>
	<lastBuildDate>Fri, 10 Feb 2012 12:19:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ethan Miller</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-581059</link>
		<dc:creator>Ethan Miller</dc:creator>
		<pubDate>Sat, 28 Jan 2012 14:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-581059</guid>
		<description>Hi Justin, Nice tutorial.  One problem I&#039;m having is that I use s within my tabs.  The solution I found was to specify only the first level of  elements under the tabbed div, e.g.:

&lt;pre&gt;&lt;code&gt; $(document).ready(function() {
                // setting the tabs in the sidebar hide and show, setting the current tab
                $(&#039;div.tabbed &gt; div&#039;).hide();
                $(&#039;div.t1&#039;).show();
                $(&#039;div.tabbed ul.tabs li.t1 a&#039;).addClass(&#039;tab-current&#039;);
        
                // SIDEBAR TABS
                $(&#039;section.tabbed ul li a&#039;).click(function(){
                        var thisClass = this.className.slice(0,2);
                        alert(&#039;thisClass-&gt;&#039;+thisClass);
                        $(&#039;div.tabbed &gt; div&#039;).hide();
                        $(&#039;div.&#039; + thisClass).show();
                        $(&#039;div.tabbed ul.tabs li a&#039;).removeClass(&#039;tab-current&#039;);
                        $(this).addClass(&#039;tab-current&#039;);
                });
        });&lt;/code&gt;&lt;/pre&gt;


( http://stackoverflow.com/questions/977883/selecting-only-first-level-elements-in-jquery )</description>
		<content:encoded><![CDATA[<p>Hi Justin, Nice tutorial.  One problem I&#8217;m having is that I use s within my tabs.  The solution I found was to specify only the first level of  elements under the tabbed div, e.g.:</p>
<pre><code> $(document).ready(function() {
                // setting the tabs in the sidebar hide and show, setting the current tab
                $('div.tabbed &gt; div').hide();
                $('div.t1').show();
                $('div.tabbed ul.tabs li.t1 a').addClass('tab-current');

                // SIDEBAR TABS
                $('section.tabbed ul li a').click(function(){
                        var thisClass = this.className.slice(0,2);
                        alert('thisClass-&gt;'+thisClass);
                        $('div.tabbed &gt; div').hide();
                        $('div.' + thisClass).show();
                        $('div.tabbed ul.tabs li a').removeClass('tab-current');
                        $(this).addClass('tab-current');
                });
        });</code></pre>
<p>( <a href="http://stackoverflow.com/questions/977883/selecting-only-first-level-elements-in-jquery" rel="nofollow">http://stackoverflow.com/questions/977883/selecting-only-first-level-elements-in-jquery</a> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: trouble</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-578468</link>
		<dc:creator>trouble</dc:creator>
		<pubDate>Thu, 26 Jan 2012 20:35:40 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-578468</guid>
		<description>Hi,

first of all i am not really PHP expert.

I am working on a blog website.

On home page they are looking for recent post to show up.
on archive page it should be all the collection.

I was wondering is there any how i can make categories to get data from recent post (which is on the home page) also same content on the archive.
Please see:
http://postimage.org/image/4k9wun6bv/

Here is how i am thinking of getting post from archive and showing it on home page. 

Please give me any help will be appreciated.

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>first of all i am not really PHP expert.</p>
<p>I am working on a blog website.</p>
<p>On home page they are looking for recent post to show up.<br />
on archive page it should be all the collection.</p>
<p>I was wondering is there any how i can make categories to get data from recent post (which is on the home page) also same content on the archive.<br />
Please see:<br />
<a href="http://postimage.org/image/4k9wun6bv/" rel="nofollow">http://postimage.org/image/4k9wun6bv/</a></p>
<p>Here is how i am thinking of getting post from archive and showing it on home page. </p>
<p>Please give me any help will be appreciated.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-536146</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Wed, 28 Dec 2011 04:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-536146</guid>
		<description>Hey Justin,

Thanks for this tutorial, I&#039;ve been playing with the jquery a bit and haven&#039;t been too successful so far, is there an easy change to the jquery to make multiple instances of these tabs work together?

Thanks</description>
		<content:encoded><![CDATA[<p>Hey Justin,</p>
<p>Thanks for this tutorial, I&#8217;ve been playing with the jquery a bit and haven&#8217;t been too successful so far, is there an easy change to the jquery to make multiple instances of these tabs work together?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-510995</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 08 Dec 2011 23:55:24 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-510995</guid>
		<description>a small problem:
I used you code and everything works fine, except that divs inside the .tabbed div (the content area) do not show up, s, s, and everything else work fine but the divs are hidden. I tried setting the display style in the style sheet but no luck. Any Ideas?</description>
		<content:encoded><![CDATA[<p>a small problem:<br />
I used you code and everything works fine, except that divs inside the .tabbed div (the content area) do not show up, s, s, and everything else work fine but the divs are hidden. I tried setting the display style in the style sheet but no luck. Any Ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 30 Tutorials Combining Both WordPress and jQuery &#124; a place to share, bookmarks, resources, css, jquery, photoshop, design, inspiration</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-471396</link>
		<dc:creator>30 Tutorials Combining Both WordPress and jQuery &#124; a place to share, bookmarks, resources, css, jquery, photoshop, design, inspiration</dc:creator>
		<pubDate>Mon, 07 Nov 2011 23:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-471396</guid>
		<description>[...] How To Create Tabs Using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] How To Create Tabs Using jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nhla</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-452402</link>
		<dc:creator>nhla</dc:creator>
		<pubDate>Wed, 19 Oct 2011 18:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-452402</guid>
		<description>thank u sooooooo much, am doing a project and iv struggled with this all day</description>
		<content:encoded><![CDATA[<p>thank u sooooooo much, am doing a project and iv struggled with this all day</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edward Ridding</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-295757</link>
		<dc:creator>Edward Ridding</dc:creator>
		<pubDate>Tue, 15 Feb 2011 12:52:13 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-295757</guid>
		<description>Great little tutorial, helped me get my head around tabs.

Thanks</description>
		<content:encoded><![CDATA[<p>Great little tutorial, helped me get my head around tabs.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marty Fried</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-252764</link>
		<dc:creator>Marty Fried</dc:creator>
		<pubDate>Sun, 21 Nov 2010 03:02:46 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-252764</guid>
		<description>Thanks for the writeup, but I was disappointed because I saw your div within a div for tab3 and thought it had solved the problem that all other samples had.  But alas, it didn&#039;t work.

I&#039;d guess it&#039;s not that hard to add code to search child divs and process the visibility of all of them, but I was hoping to find a full solution I could use.

Maybe once I find a solution, and finish my website, I&#039;ll post the code.</description>
		<content:encoded><![CDATA[<p>Thanks for the writeup, but I was disappointed because I saw your div within a div for tab3 and thought it had solved the problem that all other samples had.  But alas, it didn&#8217;t work.</p>
<p>I&#8217;d guess it&#8217;s not that hard to add code to search child divs and process the visibility of all of them, but I was hoping to find a full solution I could use.</p>
<p>Maybe once I find a solution, and finish my website, I&#8217;ll post the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How To Create WordPress Tabs Using jQuery &#124; jQuery Wisdom</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-222275</link>
		<dc:creator>How To Create WordPress Tabs Using jQuery &#124; jQuery Wisdom</dc:creator>
		<pubDate>Sun, 15 Aug 2010 07:21:33 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-222275</guid>
		<description>[...] This tutorial is primarily based off WordPress, but can easily be ported anywhere else.            Web Site Demo         Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] This tutorial is primarily based off WordPress, but can easily be ported anywhere else.            Web Site Demo         Share and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 31 Great WordPress jQuery Resources &#124; The Designer&#039;s Pod</title>
		<link>http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-220658</link>
		<dc:creator>31 Great WordPress jQuery Resources &#124; The Designer&#039;s Pod</dc:creator>
		<pubDate>Mon, 09 Aug 2010 04:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/archives/2007/11/07/how-to-create-tabs-using-jquery#comment-220658</guid>
		<description>[...] WordPress Tabs using jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Tabs using jQuery [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

