<?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 Maintain Accessibility When Using jQuery</title>
	<atom:link href="http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery</link>
	<description>Pragmatic design and tech</description>
	<lastBuildDate>Wed, 11 Aug 2010 23:45:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Silha</title>
		<link>http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery/comment-page-1#comment-213</link>
		<dc:creator>Silha</dc:creator>
		<pubDate>Wed, 11 Aug 2010 23:45:54 +0000</pubDate>
		<guid isPermaLink="false">http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery#comment-213</guid>
		<description>Actually, using display:none makes content invisible to screenreaders.</description>
		<content:encoded><![CDATA[<p>Actually, using display:none makes content invisible to screenreaders.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrei Gonzales</title>
		<link>http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery/comment-page-1#comment-156</link>
		<dc:creator>Andrei Gonzales</dc:creator>
		<pubDate>Mon, 22 Dec 2008 22:46:42 +0000</pubDate>
		<guid isPermaLink="false">http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery#comment-156</guid>
		<description>I&#039;ve used the class switch as well. It&#039;s actually excellent for hiding/inserting features that are jQuery dependent.

e.g. youtube&#039;s row/table display toggle. I have a similar trick on my client&#039;s website, but the buttons for the display/toggle only appear if JS is present, as I would load a parent class via jQuery. No JS, no jquery = no &quot;dead&quot; toggle buttons. :)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used the class switch as well. It&#8217;s actually excellent for hiding/inserting features that are jQuery dependent.</p>
<p>e.g. youtube&#8217;s row/table display toggle. I have a similar trick on my client&#8217;s website, but the buttons for the display/toggle only appear if JS is present, as I would load a parent class via jQuery. No JS, no jquery = no &#8220;dead&#8221; toggle buttons. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Bolter</title>
		<link>http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery/comment-page-1#comment-119</link>
		<dc:creator>David Bolter</dc:creator>
		<pubDate>Thu, 20 Mar 2008 14:19:40 +0000</pubDate>
		<guid isPermaLink="false">http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery#comment-119</guid>
		<description>Nice post. Thought you might be interested in joining our growing jQuery accessibility community: http://groups.google.com/group/jquery-a11y
cheers,
D</description>
		<content:encoded><![CDATA[<p>Nice post. Thought you might be interested in joining our growing jQuery accessibility community: <a href="http://groups.google.com/group/jquery-a11y" rel="nofollow">http://groups.google.com/group/jquery-a11y</a><br />
cheers,<br />
D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan</title>
		<link>http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery/comment-page-1#comment-118</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Thu, 20 Mar 2008 02:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery#comment-118</guid>
		<description>Cool. Thanks for the tip, David. That could be used to solve many more problems other than accordion, too. I&#039;ll have to play around with it some.</description>
		<content:encoded><![CDATA[<p>Cool. Thanks for the tip, David. That could be used to solve many more problems other than accordion, too. I&#8217;ll have to play around with it some.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery/comment-page-1#comment-116</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 19 Mar 2008 22:46:06 +0000</pubDate>
		<guid isPermaLink="false">http://evanmeagher.net/2008/03/how-to-use-maintain-accessibility-when-using-jquery#comment-116</guid>
		<description>One simple way to maintain degradability is to make a habit of switching classes before turning on the jQuery, f.ex:

&lt;code&gt;
$(&#039;ul.list_original&#039;).removeClass(&#039;list_original&#039;).addClass(&#039;list_jquery&#039;).doSomething(function() {
// jquery operations here
});
&lt;/code&gt;

This way, you can apply as many display:none to ul.list_jquery as you like since it will not affect the original list display.</description>
		<content:encoded><![CDATA[<p>One simple way to maintain degradability is to make a habit of switching classes before turning on the jQuery, f.ex:</p>
<p><code><br />
$('ul.list_original').removeClass('list_original').addClass('list_jquery').doSomething(function() {<br />
// jquery operations here<br />
});<br />
</code></p>
<p>This way, you can apply as many display:none to ul.list_jquery as you like since it will not affect the original list display.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
