<?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: Client side filtering data with jQuery</title>
	<atom:link href="http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 18 Jan 2012 08:51:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Josiah</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-6013</link>
		<dc:creator>Josiah</dc:creator>
		<pubDate>Mon, 19 Jul 2010 23:07:56 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-6013</guid>
		<description>Hi! Is there a way to toggle the class of the selected filter to active?

My button classes are:

.filters a
.filters a:hover
.filters a:active &lt;!-- this is the one I would like the selected filter to show - including &quot;all&quot; button as default on page load --&gt;

Thanks so much!</description>
		<content:encoded><![CDATA[<p>Hi! Is there a way to toggle the class of the selected filter to active?</p>
<p>My button classes are:</p>
<p>.filters a<br />
.filters a:hover<br />
.filters a:active <!-- this is the one I would like the selected filter to show - including "all" button as default on page load --></p>
<p>Thanks so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-3391</link>
		<dc:creator>Venkat</dc:creator>
		<pubDate>Mon, 31 May 2010 13:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-3391</guid>
		<description>Excellent one...... really nice.

How can we make it same for Checkboxes instead of anchor tags.</description>
		<content:encoded><![CDATA[<p>Excellent one&#8230;&#8230; really nice.</p>
<p>How can we make it same for Checkboxes instead of anchor tags.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denis Valente</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-2851</link>
		<dc:creator>Denis Valente</dc:creator>
		<pubDate>Tue, 11 May 2010 14:22:48 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-2851</guid>
		<description>Can I use multiple categories of filters on same list?</description>
		<content:encoded><![CDATA[<p>Can I use multiple categories of filters on same list?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PaDalton</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-1399</link>
		<dc:creator>PaDalton</dc:creator>
		<pubDate>Sun, 17 Jan 2010 11:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-1399</guid>
		<description>Thank&#039;s for this !
I&#039;m wontering on how simple it is when you know the commands ;)

I&#039;ve used it for filtering a -Field in order of the value of an other -field .

  $(document).ready(function(){
    $(&#039;#bdlnd option&#039;).click(function(e){
      e.preventDefault();
      var filter = $(this).attr(&#039;class&#039;);
      $(&#039;#bez1 option&#039;).show();
      $(&#039;#bez1 option:not(.&#039; + filter + &#039;)&#039;).hide();
    });
  });

THANK YOU !</description>
		<content:encoded><![CDATA[<p>Thank&#8217;s for this !<br />
I&#8217;m wontering on how simple it is when you know the commands <img src='http://web.enavu.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;ve used it for filtering a -Field in order of the value of an other -field .</p>
<p>  $(document).ready(function(){<br />
    $(&#8216;#bdlnd option&#8217;).click(function(e){<br />
      e.preventDefault();<br />
      var filter = $(this).attr(&#8216;class&#8217;);<br />
      $(&#8216;#bez1 option&#8217;).show();<br />
      $(&#8216;#bez1 option:not(.&#8217; + filter + &#8216;)&#8217;).hide();<br />
    });<br />
  });</p>
<p>THANK YOU !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boba</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-1398</link>
		<dc:creator>Boba</dc:creator>
		<pubDate>Wed, 06 Jan 2010 23:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-1398</guid>
		<description>Try this. After the $(document).ready({ put this:

$(&#039;#content ul li:not(.uniqueClass).hide();

Where uniqueClass is the class you want to show by default.
Haven&#039;t tested it but should work.</description>
		<content:encoded><![CDATA[<p>Try this. After the $(document).ready({ put this:</p>
<p>$(&#8216;#content ul li:not(.uniqueClass).hide();</p>
<p>Where uniqueClass is the class you want to show by default.<br />
Haven&#8217;t tested it but should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Heath</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-1397</link>
		<dc:creator>Heath</dc:creator>
		<pubDate>Tue, 05 Jan 2010 18:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-1397</guid>
		<description>Is there a way to only show one class rather than all the classes on load? I tried using the following but it didn&#039;t work. Hopefully it&#039;ll help show what I&#039;m trying to achieve:

Trying to replace this:
//show all the list items(this is needed to get the hidden ones shown)
$(&#039;#content ul li&#039;).show();

With this:
//show only one class on load rather than all classes
$(&#039;#content ul .uniqueClass&#039;).show();

Any help would be greatly appreciated!

Thanks,

- Heath</description>
		<content:encoded><![CDATA[<p>Is there a way to only show one class rather than all the classes on load? I tried using the following but it didn&#8217;t work. Hopefully it&#8217;ll help show what I&#8217;m trying to achieve:</p>
<p>Trying to replace this:<br />
//show all the list items(this is needed to get the hidden ones shown)<br />
$(&#8216;#content ul li&#8217;).show();</p>
<p>With this:<br />
//show only one class on load rather than all classes<br />
$(&#8216;#content ul .uniqueClass&#8217;).show();</p>
<p>Any help would be greatly appreciated!</p>
<p>Thanks,</p>
<p>- Heath</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Client side filtering data with jQuery &#34; TutsValley &#124; My Web Development Bookmarks</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-1396</link>
		<dc:creator>Client side filtering data with jQuery &#34; TutsValley &#124; My Web Development Bookmarks</dc:creator>
		<pubDate>Mon, 19 Oct 2009 22:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-1396</guid>
		<description>[...] Visit link: Client side filtering data with jQuery &quot; TutsValley [...]</description>
		<content:encoded><![CDATA[<p>[...] Visit link: Client side filtering data with jQuery &quot; TutsValley [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boba</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-1395</link>
		<dc:creator>Boba</dc:creator>
		<pubDate>Sun, 04 Oct 2009 22:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-1395</guid>
		<description>I&#039;m glad you like it :)</description>
		<content:encoded><![CDATA[<p>I&#8217;m glad you like it <img src='http://web.enavu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Heath</title>
		<link>http://web.enavu.com/tutorials/client-side-filtering-data-with-jquery/comment-page-1/#comment-1394</link>
		<dc:creator>Mike Heath</dc:creator>
		<pubDate>Sat, 03 Oct 2009 17:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://tutsvalley.com/?p=462#comment-1394</guid>
		<description>Many thanks - excellent straightforward tutorial. If this is typical we&#039;re in for a treat!

Mike</description>
		<content:encoded><![CDATA[<p>Many thanks &#8211; excellent straightforward tutorial. If this is typical we&#8217;re in for a treat!</p>
<p>Mike</p>
]]></content:encoded>
	</item>
</channel>
</rss>

