<?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 XML Parser with Sorting and Filtering</title>
	<atom:link href="http://blog.darkcrimson.com/2010/01/jquery-xml-parser/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/</link>
	<description>The Blog of Ben Lister</description>
	<lastBuildDate>Tue, 10 Jan 2012 11:14:28 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nick</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-500</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Tue, 10 Jan 2012 11:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-500</guid>
		<description>Hi, thanks for a great job?

I Have too questions. First I want to sort my data by category&#039;s instead of prices, could you please help me with the code?

Second,  I wonder if you have a quick fix to link &quot;Name&quot; to a link in the XML-feed?</description>
		<content:encoded><![CDATA[<p>Hi, thanks for a great job?</p>
<p>I Have too questions. First I want to sort my data by category&#8217;s instead of prices, could you please help me with the code?</p>
<p>Second,  I wonder if you have a quick fix to link &#8220;Name&#8221; to a link in the XML-feed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sekhar</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-488</link>
		<dc:creator>sekhar</dc:creator>
		<pubDate>Mon, 26 Sep 2011 08:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-488</guid>
		<description>ITS not working in IE8 Browser. Can any one send me the solutions for this.</description>
		<content:encoded><![CDATA[<p>ITS not working in IE8 Browser. Can any one send me the solutions for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nobbal</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-472</link>
		<dc:creator>Nobbal</dc:creator>
		<pubDate>Thu, 28 Apr 2011 09:30:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-472</guid>
		<description>I replaced this part in the code but no luck it gives an error on IE</description>
		<content:encoded><![CDATA[<p>I replaced this part in the code but no luck it gives an error on IE</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gertrudis Wokwicz</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-467</link>
		<dc:creator>Gertrudis Wokwicz</dc:creator>
		<pubDate>Mon, 11 Apr 2011 13:38:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-467</guid>
		<description>We will see many of these with HTML5/CSS3 not only jQuery.</description>
		<content:encoded><![CDATA[<p>We will see many of these with HTML5/CSS3 not only jQuery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marcello</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-459</link>
		<dc:creator>marcello</dc:creator>
		<pubDate>Tue, 08 Feb 2011 15:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-459</guid>
		<description>hi all,

When loading XML files locally, e.g. a CD-ROM etc., the data received by Internet Explorer is plain-text, not text/xml. For this reason this parser doesn&#039;t work.

In this case you have to change the mime type as following:

$.ajax({
   url: &quot;data.xml&quot;,
   dataType: ($.browser.msie) ? &quot;text&quot; : &quot;xml&quot;,
   success: function(data){
     var xml;
     if (typeof data == &quot;string&quot;) {
       xml = new ActiveXObject(&quot;Microsoft.XMLDOM&quot;);
       xml.async = false;
       xml.loadXML(data);
     } else {
       xml = data;
     }
     // Returned data available in object &quot;xml&quot;
   }
 });

source: jquery docs
http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests</description>
		<content:encoded><![CDATA[<p>hi all,</p>
<p>When loading XML files locally, e.g. a CD-ROM etc., the data received by Internet Explorer is plain-text, not text/xml. For this reason this parser doesn&#8217;t work.</p>
<p>In this case you have to change the mime type as following:</p>
<p>$.ajax({<br />
   url: &#8220;data.xml&#8221;,<br />
   dataType: ($.browser.msie) ? &#8220;text&#8221; : &#8220;xml&#8221;,<br />
   success: function(data){<br />
     var xml;<br />
     if (typeof data == &#8220;string&#8221;) {<br />
       xml = new ActiveXObject(&#8221;Microsoft.XMLDOM&#8221;);<br />
       xml.async = false;<br />
       xml.loadXML(data);<br />
     } else {<br />
       xml = data;<br />
     }<br />
     // Returned data available in object &#8220;xml&#8221;<br />
   }<br />
 });</p>
<p>source: jquery docs<br />
<a href="http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests" rel="nofollow">http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marcello</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-458</link>
		<dc:creator>marcello</dc:creator>
		<pubDate>Tue, 08 Feb 2011 12:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-458</guid>
		<description>dear Ben,

another question, 

the parser works offline for firefox and safari: how can we use it offline for IE?

thanks!

m.c.</description>
		<content:encoded><![CDATA[<p>dear Ben,</p>
<p>another question, </p>
<p>the parser works offline for firefox and safari: how can we use it offline for IE?</p>
<p>thanks!</p>
<p>m.c.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marcello</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-457</link>
		<dc:creator>marcello</dc:creator>
		<pubDate>Wed, 02 Feb 2011 11:58:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-457</guid>
		<description>Hi Ben, great job. thanks.
i&#039;m using the parser for an off-line catalog.
 
i wounder if  you have any tip about a keyword searching through the xml data.

i&#039;m also trying to present 15 or 20 rows for each page. do you know any example i can use?

thank you for any help

m.</description>
		<content:encoded><![CDATA[<p>Hi Ben, great job. thanks.<br />
i&#8217;m using the parser for an off-line catalog.</p>
<p>i wounder if  you have any tip about a keyword searching through the xml data.</p>
<p>i&#8217;m also trying to present 15 or 20 rows for each page. do you know any example i can use?</p>
<p>thank you for any help</p>
<p>m.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Lister</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-456</link>
		<dc:creator>Ben Lister</dc:creator>
		<pubDate>Sat, 29 Jan 2011 23:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-456</guid>
		<description>Hello Fabien,

You can set the initial sort column within the Tablesorter plugin options. See: http://tablesorter.com/docs/example-option-sort-list.html for details.

I know it is possible that your data could load before the Tablesorter plugin is instantiated which would cause the data to re-sort on load  but probably your only options to fix that are to hide the sort table until you know the Tablesorter has run or manually sort the XML.</description>
		<content:encoded><![CDATA[<p>Hello Fabien,</p>
<p>You can set the initial sort column within the Tablesorter plugin options. See: <a href="http://tablesorter.com/docs/example-option-sort-list.html" rel="nofollow">http://tablesorter.com/docs/example-option-sort-list.html</a> for details.</p>
<p>I know it is possible that your data could load before the Tablesorter plugin is instantiated which would cause the data to re-sort on load  but probably your only options to fix that are to hide the sort table until you know the Tablesorter has run or manually sort the XML.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabien</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-454</link>
		<dc:creator>Fabien</dc:creator>
		<pubDate>Tue, 25 Jan 2011 10:28:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-454</guid>
		<description>Hi Ben, 

Fabien again with a question: do you think is it possible to make a sorting by alphabetic when the page is loading?</description>
		<content:encoded><![CDATA[<p>Hi Ben, </p>
<p>Fabien again with a question: do you think is it possible to make a sorting by alphabetic when the page is loading?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Furen</title>
		<link>http://blog.darkcrimson.com/2010/01/jquery-xml-parser/comment-page-1/#comment-444</link>
		<dc:creator>Furen</dc:creator>
		<pubDate>Sun, 19 Sep 2010 12:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.darkcrimson.com/?p=115#comment-444</guid>
		<description>Hi Ben, I&#039;m new in Jquery. I want add the select (Combo box) and input box , so people can filter  as they like. How to implement it in jquery. Thanx</description>
		<content:encoded><![CDATA[<p>Hi Ben, I&#8217;m new in Jquery. I want add the select (Combo box) and input box , so people can filter  as they like. How to implement it in jquery. Thanx</p>
]]></content:encoded>
	</item>
</channel>
</rss>

