<?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: Add Options to a Select with jQuery : IE7</title>
	<atom:link href="http://www.robbiebow.co.uk/blog/add-options-to-a-select-with-jquery-ie7/feed" rel="self" type="application/rss+xml" />
	<link>http://www.robbiebow.co.uk/blog/add-options-to-a-select-with-jquery-ie7</link>
	<description>Perl, MySQL, Money and Food</description>
	<lastBuildDate>Sun, 29 Aug 2010 07:38:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Robbie Bow</title>
		<link>http://www.robbiebow.co.uk/blog/add-options-to-a-select-with-jquery-ie7/comment-page-1#comment-17</link>
		<dc:creator>Robbie Bow</dc:creator>
		<pubDate>Sat, 06 Sep 2008 23:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.robbiebow.co.uk/wordpress/?p=95#comment-17</guid>
		<description>I don&#039;t know how .append() works under the hood either, but I did try creating an option object using the &quot;new Option()&quot; syntax That result in the option being added but the text was not displayed.My only luck was with the createElement() - appendChild(createTextNode) syntax above.
</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know how .append() works under the hood either, but I did try creating an option object using the &#8220;new Option()&#8221; syntax That result in the option being added but the text was not displayed.My only luck was with the createElement() &#8211; appendChild(createTextNode) syntax above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: steve</title>
		<link>http://www.robbiebow.co.uk/blog/add-options-to-a-select-with-jquery-ie7/comment-page-1#comment-16</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Fri, 08 Aug 2008 02:21:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.robbiebow.co.uk/wordpress/?p=95#comment-16</guid>
		<description>I&#039;m not sure how the append() method in jQuery works, but if it just wraps this type of structure, then you&#039;ve encountered an IE bug (274 to be exact)
&lt;a href=&quot;http://webbugtrack.blogspot.com/2007/08/bug-274-dom-methods-on-select-lists.html&quot; rel=&quot;nofollow&quot;&gt;http://webbugtrack.blogspot.com/2007/08/bug-274-dom-methods-on-select-lists.html&lt;/a&gt;
e.g. if .append(str) translates to:
this.append = function(str){
this.innerHTML = str;
};
In IE you can&#039;t set the .innerHTML on a select element. you&#039;ll need to use the DOM zero style &quot;new Option();&quot; syntax. Or set the outerHTML.
</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure how the append() method in jQuery works, but if it just wraps this type of structure, then you&#8217;ve encountered an IE bug (274 to be exact)<br />
<a href="http://webbugtrack.blogspot.com/2007/08/bug-274-dom-methods-on-select-lists.html" rel="nofollow">http://webbugtrack.blogspot.com/2007/08/bug-274-dom-methods-on-select-lists.html</a><br />
e.g. if .append(str) translates to:<br />
this.append = function(str){<br />
this.innerHTML = str;<br />
};<br />
In IE you can&#8217;t set the .innerHTML on a select element. you&#8217;ll need to use the DOM zero style &#8220;new Option();&#8221; syntax. Or set the outerHTML.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
