<?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: Reusable Jquery Toggle</title>
	<atom:link href="http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/feed/" rel="self" type="application/rss+xml" />
	<link>http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/</link>
	<description>Web Design &#124; Huntsville, AL</description>
	<lastBuildDate>Fri, 03 Dec 2010 12:17:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Beben Koben</title>
		<link>http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/comment-page-1/#comment-33</link>
		<dc:creator>Beben Koben</dc:creator>
		<pubDate>Fri, 03 Dec 2010 12:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://jendrodesign.com/blog/?p=123#comment-33</guid>
		<description>nice toggle...very useful web...
salam bloglang anu ganteng kalem tea :D</description>
		<content:encoded><![CDATA[<p>nice toggle&#8230;very useful web&#8230;<br />
salam bloglang anu ganteng kalem tea <img src='http://jendrodesign.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/comment-page-1/#comment-32</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 26 Mar 2010 00:37:28 +0000</pubDate>
		<guid isPermaLink="false">http://jendrodesign.com/blog/?p=123#comment-32</guid>
		<description>DG:

I&#039;ve fooled around with trying to do just that. I know there is a really simple way to do it that I&#039;m just missing. When I figure it out, I&#039;ll post it here.</description>
		<content:encoded><![CDATA[<p>DG:</p>
<p>I&#8217;ve fooled around with trying to do just that. I know there is a really simple way to do it that I&#8217;m just missing. When I figure it out, I&#8217;ll post it here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DG</title>
		<link>http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/comment-page-1/#comment-31</link>
		<dc:creator>DG</dc:creator>
		<pubDate>Thu, 18 Mar 2010 17:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://jendrodesign.com/blog/?p=123#comment-31</guid>
		<description>I still can not find a way to only be able to toggle one at a time. I really dislike the &#039;accordian&#039;. I&#039;d also love to be able to have an arrow changing when the toggled section is &quot;on&quot; but one bridge at a time... Any ideas?</description>
		<content:encoded><![CDATA[<p>I still can not find a way to only be able to toggle one at a time. I really dislike the &#8216;accordian&#8217;. I&#8217;d also love to be able to have an arrow changing when the toggled section is &#8220;on&#8221; but one bridge at a time&#8230; Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: revive</title>
		<link>http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/comment-page-1/#comment-30</link>
		<dc:creator>revive</dc:creator>
		<pubDate>Fri, 12 Mar 2010 07:41:40 +0000</pubDate>
		<guid isPermaLink="false">http://jendrodesign.com/blog/?p=123#comment-30</guid>
		<description>You could also do this for a FAQ section, or reuse it on a basic accordion, etc.. here is the code I use:
&lt;code&gt;
FAQ JS CODE

 $(document).ready(function() {
   $(&#039;#faq&#039;).find(&#039;dd&#039;).hide().end().find(&#039;dt&#039;).click(function() {
     $(this).next().slideToggle();
   });
 });


FAQ HTML
  

  Question
  Answer

  Question
  Answer

  Question
  Answer

&lt;/code&gt;
 

Cheers.. and great article.</description>
		<content:encoded><![CDATA[<p>You could also do this for a FAQ section, or reuse it on a basic accordion, etc.. here is the code I use:<br />
<code><br />
FAQ JS CODE</p>
<p> $(document).ready(function() {<br />
   $('#faq').find('dd').hide().end().find('dt').click(function() {<br />
     $(this).next().slideToggle();<br />
   });<br />
 });</p>
<p>FAQ HTML</p>
<p>  Question<br />
  Answer</p>
<p>  Question<br />
  Answer</p>
<p>  Question<br />
  Answer</p>
<p></code></p>
<p>Cheers.. and great article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/comment-page-1/#comment-16</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 04 Jul 2009 22:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://jendrodesign.com/blog/?p=123#comment-16</guid>
		<description>It could work well for sidebar vertically listed navigation. If you used it for header type horizontal sub-menus it could cause some wacky things to happen. It likes to push the content of the entire &lt;div&gt; downward, potentially messing up your layout.

That being said, there are better &lt;a href=&quot;http://jquery.com&quot; rel=&quot;nofollow&quot;&gt;Jquery&lt;/a&gt; alternatives for sub-menu navigation.</description>
		<content:encoded><![CDATA[<p>It could work well for sidebar vertically listed navigation. If you used it for header type horizontal sub-menus it could cause some wacky things to happen. It likes to push the content of the entire &lt;div&gt; downward, potentially messing up your layout.</p>
<p>That being said, there are better <a href="http://jquery.com" rel="nofollow">Jquery</a> alternatives for sub-menu navigation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://jendrodesign.com/blog/2009/07/reusable-jquery-toggle/comment-page-1/#comment-15</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Sat, 04 Jul 2009 20:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://jendrodesign.com/blog/?p=123#comment-15</guid>
		<description>Pretty cool. Guess it&#039;d be a thing to use for sub-menus perhaps?</description>
		<content:encoded><![CDATA[<p>Pretty cool. Guess it&#8217;d be a thing to use for sub-menus perhaps?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

