<?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: Using jQuery and XML to Populate a Drop-Down Box</title> <atom:link href="http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/feed/" rel="self" type="application/rss+xml" /><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/</link> <description>Building &#38; Tweaking Website&#039;s</description> <lastBuildDate>Thu, 29 Jul 2010 00:15:19 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Shobhit</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-200</link> <dc:creator>Shobhit</dc:creator> <pubDate>Fri, 30 Oct 2009 12:38:47 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-200</guid> <description>Thanks dude.Really good and simple script..........</description> <content:encoded><![CDATA[<p>Thanks dude.Really good and simple script&#8230;&#8230;&#8230;.</p> ]]></content:encoded> </item> <item><title>By: josh</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-199</link> <dc:creator>josh</dc:creator> <pubDate>Tue, 04 Aug 2009 03:41:20 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-199</guid> <description>Thanks for the tip. Got that fixed now.</description> <content:encoded><![CDATA[<p>Thanks for the tip. Got that fixed now.</p> ]]></content:encoded> </item> <item><title>By: bobin</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-198</link> <dc:creator>bobin</dc:creator> <pubDate>Mon, 03 Aug 2009 11:37:31 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-198</guid> <description>hey ,thanks for the solution , by the way the links to the demo and the source are not working could you please check??</description> <content:encoded><![CDATA[<p>hey ,</p><p>thanks for the solution , by the way the links to the demo and the source are not working could you please check??</p> ]]></content:encoded> </item> <item><title>By: Michael</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-196</link> <dc:creator>Michael</dc:creator> <pubDate>Sun, 31 May 2009 19:11:59 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-196</guid> <description>...But making things browser specific is what we&#039;re trying to avoid: it&#039;s the 90&#039;s all over again! So for small datapackages, i&#039;ll use json.</description> <content:encoded><![CDATA[<p>&#8230;But making things browser specific is what we&#8217;re trying to avoid: it&#8217;s the 90&#8242;s all over again! So for small datapackages, i&#8217;ll use json.</p> ]]></content:encoded> </item> <item><title>By: Justin</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-195</link> <dc:creator>Justin</dc:creator> <pubDate>Wed, 13 May 2009 22:44:36 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-195</guid> <description>Fix for IE:var DataUtilities = (function() {//Privileged variables and methods
var self = {
&quot;processXML&quot;: function(xml) {
if (!jQuery.support.htmlSerialize) {
//If IE 6+
var xmlDoc = new ActiveXObject(&quot;Microsoft.XMLDOM&quot;);
xmlDoc.loadXML(xml);
xml = xmlDoc;
}
return xml;
}
};
return self;
})();then just do this:xml = DataUtilities.processXML(xml);</description> <content:encoded><![CDATA[<p>Fix for IE:</p><p>var DataUtilities = (function() {</p><p> //Privileged variables and methods<br
/> var self = {<br
/> &#8220;processXML&#8221;: function(xml) {<br
/> if (!jQuery.support.htmlSerialize) {<br
/> //If IE 6+<br
/> var xmlDoc = new ActiveXObject(&#8220;Microsoft.XMLDOM&#8221;);<br
/> xmlDoc.loadXML(xml);<br
/> xml = xmlDoc;<br
/> }<br
/> return xml;<br
/> }<br
/> };<br
/> return self;<br
/> })();</p><p>then just do this:</p><p>xml = DataUtilities.processXML(xml);</p> ]]></content:encoded> </item> <item><title>By: Anthony</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-188</link> <dc:creator>Anthony</dc:creator> <pubDate>Wed, 01 Apr 2009 13:39:00 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-188</guid> <description>This is a great solution, but as Eric mentioned, it does not work on IE or more specifically IE6 (The devils spawn). :-)
There are still a lot of people with IE6 out there, and It would be great if this were cross browser compatible.  So far it works for IE7 and above and Fire fox.  I haven&#039;t checked other browsers yet.</description> <content:encoded><![CDATA[<p>This is a great solution, but as Eric mentioned, it does not work on IE or more specifically IE6 (The devils spawn). <img
src='http://cdn.think2loud.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br
/> There are still a lot of people with IE6 out there, and It would be great if this were cross browser compatible.  So far it works for IE7 and above and Fire fox.  I haven&#8217;t checked other browsers yet.</p> ]]></content:encoded> </item> <item><title>By: Josh</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-191</link> <dc:creator>Josh</dc:creator> <pubDate>Sun, 29 Mar 2009 13:01:35 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-191</guid> <description>What version of IE are you using? The demo works for me in IE7.</description> <content:encoded><![CDATA[<p>What version of IE are you using? The demo works for me in IE7.</p> ]]></content:encoded> </item> <item><title>By: Eric</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-194</link> <dc:creator>Eric</dc:creator> <pubDate>Fri, 27 Mar 2009 08:05:10 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-194</guid> <description>Anyway it won&#039;t work for IE. Can you provide an alternative solution for IE?</description> <content:encoded><![CDATA[<p>Anyway it won&#8217;t work for IE. Can you provide an alternative solution for IE?</p> ]]></content:encoded> </item> <item><title>By: Blog Roll II &#124; Buanzolandia</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-189</link> <dc:creator>Blog Roll II &#124; Buanzolandia</dc:creator> <pubDate>Sun, 15 Mar 2009 06:45:55 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-189</guid> <description>[...] Inglés sobre las funciones anonimas, no siempre muy útil pero potente en determinados problemas   Using jQuery and XML to Populate a Drop-Down Box También en inglés, pero con mucho código, pero enseña a usar dataType: “xml” en peticiones [...]</description> <content:encoded><![CDATA[<p>[...] Inglés sobre las funciones anonimas, no siempre muy útil pero potente en determinados problemas   Using jQuery and XML to Populate a Drop-Down Box También en inglés, pero con mucho código, pero enseña a usar dataType: “xml” en peticiones [...]</p> ]]></content:encoded> </item> <item><title>By: links for 2009-03-14 &#171; pabloidz</title><link>http://think2loud.com/using-jquery-and-xml-to-populate-a-drop-down-box/#comment-190</link> <dc:creator>links for 2009-03-14 &#171; pabloidz</dc:creator> <pubDate>Sat, 14 Mar 2009 12:01:29 +0000</pubDate> <guid
isPermaLink="false">http://think2loud.com/?p=288#comment-190</guid> <description>[...] Using jQuery and XML to Populate a Drop-Down Box Think2Loud (tags: jquery)         Blogroll [...]</description> <content:encoded><![CDATA[<p>[...] Using jQuery and XML to Populate a Drop-Down Box Think2Loud (tags: jquery)         Blogroll [...]</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Served from: think2loud.com @ 2010-07-29 23:32:28 by W3 Total Cache -->