<?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 Kajabity.com</title>
	<atom:link href="http://www.kajabity.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kajabity.com</link>
	<description>A blog by Simon J. Williams</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:57:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>Comment on Tools for C# by Tinky Winky</title>
		<link>http://www.kajabity.com/kajabity-tools/#comment-8789</link>
		<dc:creator>Tinky Winky</dc:creator>
		<pubDate>Wed, 01 Feb 2012 16:57:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/kajabity-tools/#comment-8789</guid>
		<description>Hey Hugo, you question does not make sense. Can you clarify what you are trying to ask?</description>
		<content:encoded><![CDATA[<p>Hey Hugo, you question does not make sense. Can you clarify what you are trying to ask?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handling XML Elements with Namespaces in jQuery by simon</title>
		<link>http://www.kajabity.com/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-8511</link>
		<dc:creator>simon</dc:creator>
		<pubDate>Thu, 26 Jan 2012 23:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-8511</guid>
		<description>The very next line in my script is 
&lt;code&gt;var startDateStr = startDateElement.attr( &quot;startTime&quot; );&lt;/code&gt;

You can see the full script in &quot;events.js&quot; on the page at &lt;a href=&quot;http://localhost/www.thistlesociety.org.uk/events.html&quot; rel=&quot;nofollow&quot;&gt;http://localhost/www.thistlesociety.org.uk/events.html&lt;/a&gt;.

Perhaps try tracing it through with Firebug or IE&#039;s F12 feature.</description>
		<content:encoded><![CDATA[<p>The very next line in my script is<br />
<code>var startDateStr = startDateElement.attr( "startTime" );</code></p>
<p>You can see the full script in &#8220;events.js&#8221; on the page at <a href="http://localhost/www.thistlesociety.org.uk/events.html" rel="nofollow">http://localhost/www.thistlesociety.org.uk/events.html</a>.</p>
<p>Perhaps try tracing it through with Firebug or IE&#8217;s F12 feature.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handling XML Elements with Namespaces in jQuery by js noob</title>
		<link>http://www.kajabity.com/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-8508</link>
		<dc:creator>js noob</dc:creator>
		<pubDate>Thu, 26 Jan 2012 22:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-8508</guid>
		<description>I am new to web development and JQuery, and using this solution has gotten me a lot closer to a working application, but an unanswered (and maybe obvious) question arose. How do you get the startDate or endDate values from the gd:when?

When I use $(this).find(prefix + &quot;when&quot;) and then print it out, it displays as [object Object]. I take this to mean that it is returning the gd:when node which has 2 parts to it: startDate and endDate.

I also tried using .attr(&quot;startDate&quot;) appended on the end, but that doesn&#039;t work.

What am I missing?</description>
		<content:encoded><![CDATA[<p>I am new to web development and JQuery, and using this solution has gotten me a lot closer to a working application, but an unanswered (and maybe obvious) question arose. How do you get the startDate or endDate values from the gd:when?</p>
<p>When I use $(this).find(prefix + &#8220;when&#8221;) and then print it out, it displays as [object Object]. I take this to mean that it is returning the gd:when node which has 2 parts to it: startDate and endDate.</p>
<p>I also tried using .attr(&#8220;startDate&#8221;) appended on the end, but that doesn&#8217;t work.</p>
<p>What am I missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handling XML Elements with Namespaces in jQuery by exactsolutions</title>
		<link>http://www.kajabity.com/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-8348</link>
		<dc:creator>exactsolutions</dc:creator>
		<pubDate>Mon, 23 Jan 2012 06:49:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-8348</guid>
		<description>Simon, thank you! Really easy and good solution. You saved a lot of my time)))

I put it in a function:

        function XMLfind(prnt, pref, namestr) {
            var prefix = pref+&quot;\\:&quot;;
            var nametag = $(prnt).find(prefix + namestr);
            if (nametag.length == 0) {
                nametag = $(prnt).find(namestr);
            }
            return nametag; 
        }

and use it like this: 
var name_text = XMLfind(this, &quot;d&quot;, &quot;test_name&quot;).text();

I tested it in IE, Chrome, Opera, Android browser - works fine. But in Opera Mini (on Android) it does not work. Moreover the tags without colon also cant be find even by $(xml).find(&#039;entry&#039;). Is another way for opera mini?</description>
		<content:encoded><![CDATA[<p>Simon, thank you! Really easy and good solution. You saved a lot of my time)))</p>
<p>I put it in a function:</p>
<p>        function XMLfind(prnt, pref, namestr) {<br />
            var prefix = pref+&#8221;\\:&#8221;;<br />
            var nametag = $(prnt).find(prefix + namestr);<br />
            if (nametag.length == 0) {<br />
                nametag = $(prnt).find(namestr);<br />
            }<br />
            return nametag;<br />
        }</p>
<p>and use it like this:<br />
var name_text = XMLfind(this, &#8220;d&#8221;, &#8220;test_name&#8221;).text();</p>
<p>I tested it in IE, Chrome, Opera, Android browser &#8211; works fine. But in Opera Mini (on Android) it does not work. Moreover the tags without colon also cant be find even by $(xml).find(&#8216;entry&#8217;). Is another way for opera mini?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handling XML Elements with Namespaces in jQuery by vice</title>
		<link>http://www.kajabity.com/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-7472</link>
		<dc:creator>vice</dc:creator>
		<pubDate>Fri, 06 Jan 2012 15:28:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/05/handling-xml-elements-with-namespaces-in-jquery/#comment-7472</guid>
		<description>Great stuff, thanks.</description>
		<content:encoded><![CDATA[<p>Great stuff, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Calendar Events to Google Calendar in C# by simon</title>
		<link>http://www.kajabity.com/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-4681</link>
		<dc:creator>simon</dc:creator>
		<pubDate>Sat, 19 Nov 2011 00:32:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-4681</guid>
		<description>At a guess, the code below should do it:
&lt;code&gt;
            Reminder reminder = new Reminder();
            reminder.Minutes = 15;
            reminder.Method = Reminder.ReminderMethod.alert;
            eventTime.Reminders.Add( reminder );
&lt;/code&gt;

Remember &lt;code&gt;eventTime&lt;/code&gt; is an instance of a &lt;code&gt;When&lt;/code&gt; class.

Also, see http://code.google.com/apis/calendar/data/1.0/developers_guide_php.html#Reminders</description>
		<content:encoded><![CDATA[<p>At a guess, the code below should do it:<br />
<code><br />
            Reminder reminder = new Reminder();<br />
            reminder.Minutes = 15;<br />
            reminder.Method = Reminder.ReminderMethod.alert;<br />
            eventTime.Reminders.Add( reminder );<br />
</code></p>
<p>Remember <code>eventTime</code> is an instance of a <code>When</code> class.</p>
<p>Also, see <a href="http://code.google.com/apis/calendar/data/1.0/developers_guide_php.html#Reminders" rel="nofollow">http://code.google.com/apis/calendar/data/1.0/developers_guide_php.html#Reminders</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Calendar Events to Google Calendar in C# by Alex</title>
		<link>http://www.kajabity.com/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-4194</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 11 Nov 2011 06:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-4194</guid>
		<description>Hi. What about reminders (notify) ?</description>
		<content:encoded><![CDATA[<p>Hi. What about reminders (notify) ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Calendar Events to Google Calendar in C# by prateek</title>
		<link>http://www.kajabity.com/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-2691</link>
		<dc:creator>prateek</dc:creator>
		<pubDate>Tue, 04 Oct 2011 06:27:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-2691</guid>
		<description>thanks for reply,but i was talking about last post with thistle class,but i got it</description>
		<content:encoded><![CDATA[<p>thanks for reply,but i was talking about last post with thistle class,but i got it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Calendar Events to Google Calendar in C# by simon</title>
		<link>http://www.kajabity.com/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-2678</link>
		<dc:creator>simon</dc:creator>
		<pubDate>Mon, 03 Oct 2011 21:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-2678</guid>
		<description>If you mean the post that follows this one and tells you how I embedded the content into the Thistle Society Events page...I&#039;ve not written it yet.  I&#039;ll get it done this week and add a link at the end of this one.</description>
		<content:encoded><![CDATA[<p>If you mean the post that follows this one and tells you how I embedded the content into the Thistle Society Events page&#8230;I&#8217;ve not written it yet.  I&#8217;ll get it done this week and add a link at the end of this one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Calendar Events to Google Calendar in C# by prateek</title>
		<link>http://www.kajabity.com/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-2664</link>
		<dc:creator>prateek</dc:creator>
		<pubDate>Mon, 03 Oct 2011 08:27:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.kajabity.com/index.php/2011/01/adding-calendar-events-to-google-calendar-in-c/#comment-2664</guid>
		<description>how can i see the last post</description>
		<content:encoded><![CDATA[<p>how can i see the last post</p>
]]></content:encoded>
	</item>
</channel>
</rss>

