<?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 CM</title>
	<atom:link href="http://corymathews.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://corymathews.com</link>
	<description>Things I should remember and then some...</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:30:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Open All External Links in New Tabs by salman</title>
		<link>http://corymathews.com/make-all-external-links-open-in-a-new-tab/comment-page-1/#comment-4324</link>
		<dc:creator>salman</dc:creator>
		<pubDate>Tue, 07 Feb 2012 15:30:08 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=628#comment-4324</guid>
		<description>Thanks . Working Perfectly
I was using

jQuery(&#039;a&#039;).each(function() {
    // Let&#039;s make external links open in a new window.
    var href = jQuery(this).attr(&#039;href&#039;);
    
    if (typeof href != &#039;undefined&#039; &amp;&amp; href != &quot;&quot; &amp;&amp; (href.indexOf(&#039;http://&#039;) != -1 &#124;&#124; href.indexOf(&#039;https://&#039;) != -1) &amp;&amp; href.indexOf(window.location.hostname) == -1) {
        jQuery(this).attr(&quot;target&quot;, &quot;_blank&quot;);
    }

which after some time started opening all links in new tab.</description>
		<content:encoded><![CDATA[<p>Thanks . Working Perfectly<br />
I was using</p>
<p>jQuery(&#8216;a&#8217;).each(function() {<br />
    // Let&#8217;s make external links open in a new window.<br />
    var href = jQuery(this).attr(&#8216;href&#8217;);</p>
<p>    if (typeof href != &#8216;undefined&#8217; &amp;&amp; href != &#8220;&#8221; &amp;&amp; (href.indexOf(&#8216;http://&#8217;) != -1 || href.indexOf(&#8216;https://&#8217;) != -1) &amp;&amp; href.indexOf(window.location.hostname) == -1) {<br />
        jQuery(this).attr(&#8220;target&#8221;, &#8220;_blank&#8221;);<br />
    }</p>
<p>which after some time started opening all links in new tab.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET/C# Prompt a Save Dialog Box to Download a File by Manoj</title>
		<link>http://corymathews.com/aspnetc-prompt-a-save-dialog-box-to-download-a-file/comment-page-1/#comment-4275</link>
		<dc:creator>Manoj</dc:creator>
		<pubDate>Fri, 03 Feb 2012 04:48:18 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=397#comment-4275</guid>
		<description>I am getting an exception in the last line of code Unauthorized exception was unhand led by users code</description>
		<content:encoded><![CDATA[<p>I am getting an exception in the last line of code Unauthorized exception was unhand led by users code</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET/C# Prompt a Save Dialog Box to Download a File by Jonathan Berber</title>
		<link>http://corymathews.com/aspnetc-prompt-a-save-dialog-box-to-download-a-file/comment-page-1/#comment-4246</link>
		<dc:creator>Jonathan Berber</dc:creator>
		<pubDate>Wed, 01 Feb 2012 09:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=397#comment-4246</guid>
		<description>This works perfectly and solves a lot of problems - thank you.</description>
		<content:encoded><![CDATA[<p>This works perfectly and solves a lot of problems &#8211; thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linked Lists in Java Part 1 by cswarwick</title>
		<link>http://corymathews.com/linked-lists-in-java-part-1/comment-page-1/#comment-4238</link>
		<dc:creator>cswarwick</dc:creator>
		<pubDate>Tue, 31 Jan 2012 21:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=61#comment-4238</guid>
		<description>temp = MyList.get(1);
System.out.println(&quot;Element 1: &quot;+temp);

Could you please explain me the reason of the temp variable? There is no reason actually and makes having errors. temp is a string variable. MyList.get(1) is an object. Therefore you have incompatible types. You could easily have this:
System.out.println(&quot;Element 1: &quot;+ MyList.get(1));
Nice tutorial though. Simple and understandable. Thank you</description>
		<content:encoded><![CDATA[<p>temp = MyList.get(1);<br />
System.out.println(&#8220;Element 1: &#8220;+temp);</p>
<p>Could you please explain me the reason of the temp variable? There is no reason actually and makes having errors. temp is a string variable. MyList.get(1) is an object. Therefore you have incompatible types. You could easily have this:<br />
System.out.println(&#8220;Element 1: &#8220;+ MyList.get(1));<br />
Nice tutorial though. Simple and understandable. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Custom Events by Clorr</title>
		<link>http://corymathews.com/jquery-custom-events/comment-page-1/#comment-4080</link>
		<dc:creator>Clorr</dc:creator>
		<pubDate>Mon, 23 Jan 2012 22:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=872#comment-4080</guid>
		<description>Agree, but still could illustrate the returning of a handler to the trigger handler as pointed in .4</description>
		<content:encoded><![CDATA[<p>Agree, but still could illustrate the returning of a handler to the trigger handler as pointed in .4</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Custom Events by Mathew Bukowicz</title>
		<link>http://corymathews.com/jquery-custom-events/comment-page-1/#comment-4062</link>
		<dc:creator>Mathew Bukowicz</dc:creator>
		<pubDate>Sat, 21 Jan 2012 21:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=872#comment-4062</guid>
		<description>Thanks for the article. It was interesting, succinct and straight to the point.</description>
		<content:encoded><![CDATA[<p>Thanks for the article. It was interesting, succinct and straight to the point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Linked Lists in Java Part 1 by M</title>
		<link>http://corymathews.com/linked-lists-in-java-part-1/comment-page-1/#comment-4056</link>
		<dc:creator>M</dc:creator>
		<pubDate>Sat, 21 Jan 2012 15:08:48 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=61#comment-4056</guid>
		<description>This was very useful.
Thanks</description>
		<content:encoded><![CDATA[<p>This was very useful.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET/C# Prompt a Save Dialog Box to Download a File by Ali</title>
		<link>http://corymathews.com/aspnetc-prompt-a-save-dialog-box-to-download-a-file/comment-page-1/#comment-4014</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Wed, 18 Jan 2012 10:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=397#comment-4014</guid>
		<description>man this works for one imagebutton but didnot work for the second imagebutton on the same page.Will you please give a good reason for this</description>
		<content:encoded><![CDATA[<p>man this works for one imagebutton but didnot work for the second imagebutton on the same page.Will you please give a good reason for this</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List Current Parent and Child Pages in WordPress by CoryMathews</title>
		<link>http://corymathews.com/list-current-parent-and-child-pages-in-wordpress/comment-page-1/#comment-3399</link>
		<dc:creator>CoryMathews</dc:creator>
		<pubDate>Mon, 28 Nov 2011 14:38:04 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=805#comment-3399</guid>
		<description>@Nete I added a bit to the end of the article, which should help you out.</description>
		<content:encoded><![CDATA[<p>@Nete I added a bit to the end of the article, which should help you out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on List Current Parent and Child Pages in WordPress by Nete</title>
		<link>http://corymathews.com/list-current-parent-and-child-pages-in-wordpress/comment-page-1/#comment-3378</link>
		<dc:creator>Nete</dc:creator>
		<pubDate>Sun, 27 Nov 2011 15:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://corymathews.com/?p=805#comment-3378</guid>
		<description>It works great, just what I need, but I want the list to be sorted by the order no I have assigned to the pages - How do I do that?</description>
		<content:encoded><![CDATA[<p>It works great, just what I need, but I want the list to be sorted by the order no I have assigned to the pages &#8211; How do I do that?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

