<?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: jQuery Ratings &#8211; A Progressive Enhancement Approach</title>
	<atom:link href="http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/feed/" rel="self" type="application/rss+xml" />
	<link>http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/</link>
	<description></description>
	<lastBuildDate>Wed, 30 Dec 2009 21:04:20 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kyle</title>
		<link>http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/comment-page-1/#comment-7109</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Fri, 29 Aug 2008 13:02:26 +0000</pubDate>
		<guid isPermaLink="false">http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/#comment-7109</guid>
		<description>&lt;p&gt;Great catch Andras, 
In my haste before my presentation I focused on the label click event instead of the radio button click event.&lt;/p&gt;

&lt;p&gt;Since clicking a label will toggle the associated input it was doubling up the request. Fixed now!&lt;/p&gt;

&lt;p&gt;http://kylebradshaw.com/presentations/jQuery/rating.html&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great catch Andras, 
In my haste before my presentation I focused on the label click event instead of the radio button click event.</p>

<p>Since clicking a label will toggle the associated input it was doubling up the request. Fixed now!</p>

<p><a href="http://kylebradshaw.com/presentations/jQuery/rating.html" rel="nofollow">http://kylebradshaw.com/presentations/jQuery/rating.html</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Andras</title>
		<link>http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/comment-page-1/#comment-7103</link>
		<dc:creator>Andras</dc:creator>
		<pubDate>Fri, 29 Aug 2008 12:26:27 +0000</pubDate>
		<guid isPermaLink="false">http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/#comment-7103</guid>
		<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;One question: debugging with firebug its seems that it calls results.php twice ?&lt;/p&gt;

&lt;p&gt;http://kylebradshaw.com/presentations/jQuery/rating.html&lt;/p&gt;

&lt;p&gt;Andras&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hello,</p>

<p>One question: debugging with firebug its seems that it calls results.php twice ?</p>

<p><a href="http://kylebradshaw.com/presentations/jQuery/rating.html" rel="nofollow">http://kylebradshaw.com/presentations/jQuery/rating.html</a></p>

<p>Andras</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/comment-page-1/#comment-3429</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 31 Mar 2008 19:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/#comment-3429</guid>
		<description>&lt;p&gt;I forgot to mention in my previous post a solution to the problem I highlighted. The CSS declarations display:none and visibility:hidden will prohibit form elements from receiving focus, and as jQuery&#039;s hide() method uses display:none (I believe), this is out.  However, one can use position:absolute; and z-index:-1; to place the form element &lt;em&gt;behind&lt;/em&gt; its label effectively hiding it.  To save our graceful degradation, these CSS declarations would best be applied using a class that is added to the elements via JS. Otherwise, the form elements would be hidden in the JS-off, CSS-on scenario.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I forgot to mention in my previous post a solution to the problem I highlighted. The CSS declarations display:none and visibility:hidden will prohibit form elements from receiving focus, and as jQuery&#8217;s hide() method uses display:none (I believe), this is out.  However, one can use position:absolute; and z-index:-1; to place the form element <em>behind</em> its label effectively hiding it.  To save our graceful degradation, these CSS declarations would best be applied using a class that is added to the elements via JS. Otherwise, the form elements would be hidden in the JS-off, CSS-on scenario.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/comment-page-1/#comment-3428</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 31 Mar 2008 18:49:01 +0000</pubDate>
		<guid isPermaLink="false">http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/#comment-3428</guid>
		<description>&lt;p&gt;Although I like the approach and the concept is great, the implementation leaves much to be desired.  This solution is inaccessible to users who are unable to use a mouse, as the labels do not receive focus by tabbing. (Tested in Fx 2 and 3b4, IE7)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Although I like the approach and the concept is great, the implementation leaves much to be desired.  This solution is inaccessible to users who are unable to use a mouse, as the labels do not receive focus by tabbing. (Tested in Fx 2 and 3b4, IE7)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/comment-page-1/#comment-3320</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Mon, 24 Mar 2008 16:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/#comment-3320</guid>
		<description>&lt;p&gt;Great point Steve!&lt;/p&gt;

&lt;p&gt;Use of the &lt;legend&gt; element would definitely improve the markup. I&#039;ll have to roll that in!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great point Steve!</p>

<p>Use of the <legend> element would definitely improve the markup. I&#8217;ll have to roll that in!</legend></p>]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/comment-page-1/#comment-3318</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Mon, 24 Mar 2008 14:55:19 +0000</pubDate>
		<guid isPermaLink="false">http://somedirection.com/2008/03/24/jquery-ratings-a-progressive-enhancement-approach/#comment-3318</guid>
		<description>&lt;p&gt;Nice!&lt;/p&gt;

&lt;p&gt;My only suggestion would be the addition of a legend element on the form for the &quot;rate&quot; text that you would then enhance via CSS to prettify it to what you&#039;ve got now.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Nice!</p>

<p>My only suggestion would be the addition of a legend element on the form for the &#8220;rate&#8221; text that you would then enhance via CSS to prettify it to what you&#8217;ve got now.</p>]]></content:encoded>
	</item>
</channel>
</rss>
