<?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 for Tim-Hinnerk Heuer</title>
	<atom:link href="http://www.thheuer.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thheuer.com</link>
	<description>New Zealand - Germany</description>
	<lastBuildDate>Mon, 03 Jun 2013 23:48:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by Tim</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-40368</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Mon, 03 Jun 2013 23:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-40368</guid>
		<description>Oh, and you need to re-initialize the group but that won&#039;t work...

Sorry, this is not an easy fix.</description>
		<content:encoded><![CDATA[<p>Oh, and you need to re-initialize the group but that won&#8217;t work&#8230;</p>
<p>Sorry, this is not an easy fix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by Tim</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-40367</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Mon, 03 Jun 2013 23:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-40367</guid>
		<description>Hi Axel,

As far as I understand, you want to change the image when something else is clicked on.

You can achieve this by changing the image AND the radio buttons&#039; data so that it still behaves correctly.

This however, is reasonably complicated and should maybe be part of the library.

For the mean time you could try doing something like:

var $el = $(&#039;#heuer4&#039;); // selector for your radio button
eval(&#039;var json = &#039;+ $el.attr(&#039;class&#039;) +&#039;;&#039;);
json.src = &#039;accept.png&#039;;
$el.attr(&#039;class&#039;,JSON.stringify(json));
$img=$el.prev();
$img.attr(&#039;src&#039;,json.src);</description>
		<content:encoded><![CDATA[<p>Hi Axel,</p>
<p>As far as I understand, you want to change the image when something else is clicked on.</p>
<p>You can achieve this by changing the image AND the radio buttons&#8217; data so that it still behaves correctly.</p>
<p>This however, is reasonably complicated and should maybe be part of the library.</p>
<p>For the mean time you could try doing something like:</p>
<p>var $el = $(&#8216;#heuer4&#8242;); // selector for your radio button<br />
eval(&#8216;var json = &#8216;+ $el.attr(&#8216;class&#8217;) +&#8217;;');<br />
json.src = &#8216;accept.png&#8217;;<br />
$el.attr(&#8216;class&#8217;,JSON.stringify(json));<br />
$img=$el.prev();<br />
$img.attr(&#8216;src&#8217;,json.src);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by Axel</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-40365</link>
		<dc:creator>Axel</dc:creator>
		<pubDate>Mon, 03 Jun 2013 21:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-40365</guid>
		<description>Hi Tim,

your work is good, but for me a little bit difficult to understand all. I have a Radio button and a Text in a label beside all inside a table.
It is possible to change the pics by click on the row of the table anyway?
With:

  $(&#039;.classRow&#039;).click(function() {
    $(this).find(&#039;input[type=radio]&#039;).prop(&#039;checked&#039;, true);
  }

can i change the value of radio, but what can I do to change the pic at this place?
Is there an easy way for this problem?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Tim,</p>
<p>your work is good, but for me a little bit difficult to understand all. I have a Radio button and a Text in a label beside all inside a table.<br />
It is possible to change the pics by click on the row of the table anyway?<br />
With:</p>
<p>  $(&#8216;.classRow&#8217;).click(function() {<br />
    $(this).find(&#8216;input[type=radio]&#8216;).prop(&#8216;checked&#8217;, true);<br />
  }</p>
<p>can i change the value of radio, but what can I do to change the pic at this place?<br />
Is there an easy way for this problem?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Code Jam Problem &#8211; Problem B. Baby Height &#8211; Mistake? by Tim</title>
		<link>http://www.thheuer.com/2013/04/google-code-jam-problem-problem-b-baby-height-mistake/#comment-39675</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 21 May 2013 09:25:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=234#comment-39675</guid>
		<description>Hi Igor,

Thanks for your comment! In fact I feel privileged to get a comment on my website by a Google Code Jam problem creator. GCJ problems are generally far from trivial to solve and even harder to come up with. So, I am not dismissing GCJ because of something that can easily happen like a slight mis-wording which leads to a mis-understanding. 

I&#039;m not dismissing GCJ because of that at all. I tried my luck in Round 1A and C, but unfortunately did not succeed.

I believe even trying makes me a better programmer and since I enjoy solving complex problems with computers I won&#039;t give up on GCJ. I&#039;ll try again next year most likely, but it seems I need a lot more practice.</description>
		<content:encoded><![CDATA[<p>Hi Igor,</p>
<p>Thanks for your comment! In fact I feel privileged to get a comment on my website by a Google Code Jam problem creator. GCJ problems are generally far from trivial to solve and even harder to come up with. So, I am not dismissing GCJ because of something that can easily happen like a slight mis-wording which leads to a mis-understanding. </p>
<p>I&#8217;m not dismissing GCJ because of that at all. I tried my luck in Round 1A and C, but unfortunately did not succeed.</p>
<p>I believe even trying makes me a better programmer and since I enjoy solving complex problems with computers I won&#8217;t give up on GCJ. I&#8217;ll try again next year most likely, but it seems I need a lot more practice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Code Jam Problem &#8211; Problem B. Baby Height &#8211; Mistake? by Igor Naverniouk</title>
		<link>http://www.thheuer.com/2013/04/google-code-jam-problem-problem-b-baby-height-mistake/#comment-39628</link>
		<dc:creator>Igor Naverniouk</dc:creator>
		<pubDate>Mon, 20 May 2013 17:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=234#comment-39628</guid>
		<description>Hello there.

I am the author of the Baby Height problem, so this is all entirely my fault. I&#039;m sorry that you had such a tough time with this problem. I agree that the words &quot;each integer&quot; in the Limits section can be misinterpreted to mean &quot;each integer in the output&quot;, but that&#039;s not what those words mean. 

The Limits section is talking about the input file. It lists a set of guarantees about the input which your program can assume to always be true. In this case, all input heights are indeed between 1&#039;0&quot; and 9&#039;11&quot;, but some output heights can exceed that limit.

I hope you&#039;re not too frustrated to give up on Code Jam. We have much more interesting problems that I hope you &#039;ll try.</description>
		<content:encoded><![CDATA[<p>Hello there.</p>
<p>I am the author of the Baby Height problem, so this is all entirely my fault. I&#8217;m sorry that you had such a tough time with this problem. I agree that the words &#8220;each integer&#8221; in the Limits section can be misinterpreted to mean &#8220;each integer in the output&#8221;, but that&#8217;s not what those words mean. </p>
<p>The Limits section is talking about the input file. It lists a set of guarantees about the input which your program can assume to always be true. In this case, all input heights are indeed between 1&#8217;0&#8243; and 9&#8217;11&#8243;, but some output heights can exceed that limit.</p>
<p>I hope you&#8217;re not too frustrated to give up on Code Jam. We have much more interesting problems that I hope you &#8216;ll try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by Brett Mitchell</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-32110</link>
		<dc:creator>Brett Mitchell</dc:creator>
		<pubDate>Wed, 13 Feb 2013 10:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-32110</guid>
		<description>Thanks for the quick response.  I&#039;ve got plenty of time!  I&#039;ll keep a look out for an update when you get a chance.  Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for the quick response.  I&#8217;ve got plenty of time!  I&#8217;ll keep a look out for an update when you get a chance.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by Tim</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-32109</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Wed, 13 Feb 2013 09:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-32109</guid>
		<description>You might need to change the plugin for that, because I haven&#039;t made it dispatch events yet. However, if you have some patience, I will have a look when I have half an hour or more to do so.</description>
		<content:encoded><![CDATA[<p>You might need to change the plugin for that, because I haven&#8217;t made it dispatch events yet. However, if you have some patience, I will have a look when I have half an hour or more to do so.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by Brett Mitchell</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-32098</link>
		<dc:creator>Brett Mitchell</dc:creator>
		<pubDate>Wed, 13 Feb 2013 02:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-32098</guid>
		<description>Great work Tim!   I appreciate it very much.  I am incorporate this into a phone selection website.  I would like to attach the onclick event to the radio buttons to redirect to another page. However I am having trouble getting this to work.  I tried to attach the &#039;change &#039; and &#039;click&#039; event using JQuerys live property but it doesn&#039;t seem to be working.  Any help would be appreciated.  Thanks!</description>
		<content:encoded><![CDATA[<p>Great work Tim!   I appreciate it very much.  I am incorporate this into a phone selection website.  I would like to attach the onclick event to the radio buttons to redirect to another page. However I am having trouble getting this to work.  I tried to attach the &#8216;change &#8216; and &#8216;click&#8217; event using JQuerys live property but it doesn&#8217;t seem to be working.  Any help would be appreciated.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by Tim</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-22499</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 13 Dec 2012 07:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-22499</guid>
		<description>Not sure what you mean. This is what the plugin does, you can replace radio buttons with your own and you should be able to see how from the example.</description>
		<content:encoded><![CDATA[<p>Not sure what you mean. This is what the plugin does, you can replace radio buttons with your own and you should be able to see how from the example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Plugin &#8211; Image Radio buttons by gs</title>
		<link>http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/#comment-22414</link>
		<dc:creator>gs</dc:creator>
		<pubDate>Wed, 12 Dec 2012 18:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.thheuer.com/?p=129#comment-22414</guid>
		<description>hi, how can you select a radio using another button? Thanks</description>
		<content:encoded><![CDATA[<p>hi, how can you select a radio using another button? Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
