<?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 .html() returns strange results in IE after other bindings</title>
	<atom:link href="http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/</link>
	<description>Articles, reviews, travel, design, literature and more written by Mike Padgett, an Information Designer in Brussels</description>
	<lastBuildDate>Wed, 01 Feb 2012 21:41:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Sid</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-4478</link>
		<dc:creator>Sid</dc:creator>
		<pubDate>Thu, 28 Apr 2011 23:38:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-4478</guid>
		<description>I know this is a old thread but thought this might help. I had to change the head information in my html to get around the sizset= /sizcache= errors 

This is what worked for me

</description>
		<content:encoded><![CDATA[<p>I know this is a old thread but thought this might help. I had to change the head information in my html to get around the sizset= /sizcache= errors </p>
<p>This is what worked for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Padgett</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-4190</link>
		<dc:creator>Mike Padgett</dc:creator>
		<pubDate>Wed, 15 Sep 2010 15:14:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-4190</guid>
		<description>@Hasan and everyone: if you&#039;re thinking about browser sniffing, please consider using &lt;a href=&quot;http://api.jquery.com/jQuery.support/&quot; title=&quot;Links to an external website&quot; rel=&quot;nofollow&quot;&gt;jQuery.support&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>@Hasan and everyone: if you&#8217;re thinking about browser sniffing, please consider using <a href="http://api.jquery.com/jQuery.support/" title="Links to an external website" rel="nofollow">jQuery.support</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hasan Cem Cerit</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-4189</link>
		<dc:creator>Hasan Cem Cerit</dc:creator>
		<pubDate>Wed, 15 Sep 2010 13:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-4189</guid>
		<description>Hi Everyone,

If you are parsing xml using jquery, and you need html() in IE, try this: 

&lt;code&gt;var content = ($.browser.msie) ? $(this).context.xml : $(this).html();&lt;/code&gt;

This solved my problem. I hope it will help someone too.

Greetings.</description>
		<content:encoded><![CDATA[<p>Hi Everyone,</p>
<p>If you are parsing xml using jquery, and you need html() in IE, try this: </p>
<p><code>var content = ($.browser.msie) ? $(this).context.xml : $(this).html();</code></p>
<p>This solved my problem. I hope it will help someone too.</p>
<p>Greetings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raph</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-4107</link>
		<dc:creator>raph</dc:creator>
		<pubDate>Mon, 12 Jul 2010 12:10:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-4107</guid>
		<description>Great thanks !</description>
		<content:encoded><![CDATA[<p>Great thanks !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jurik</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-3010</link>
		<dc:creator>Jurik</dc:creator>
		<pubDate>Thu, 24 Sep 2009 12:33:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-3010</guid>
		<description>Well - I got this &quot;sizset= /sizcache=&quot;-bug too. But it is a little bit different to the descriped bug by Mike. Here the sizzler still doesn&#039;t clean up, but the reason is clear: 

just invalid html (I didn&#039;t close a span-tag)

Safari and Firefox closed this tag correct and the &#039;not so error tolerant&#039; IE messed up.

So I suggest you to check your code if this &quot;sizset=&quot;-Bug still appears in IE.

best regards,
Jurik

PS: For the hopeless ones - try to code a jQuery plugin that closes your tags if not closed in IE ;)</description>
		<content:encoded><![CDATA[<p>Well &#8211; I got this &#8220;sizset= /sizcache=&#8221;-bug too. But it is a little bit different to the descriped bug by Mike. Here the sizzler still doesn&#8217;t clean up, but the reason is clear: </p>
<p>just invalid html (I didn&#8217;t close a span-tag)</p>
<p>Safari and Firefox closed this tag correct and the &#8216;not so error tolerant&#8217; IE messed up.</p>
<p>So I suggest you to check your code if this &#8220;sizset=&#8221;-Bug still appears in IE.</p>
<p>best regards,<br />
Jurik</p>
<p>PS: For the hopeless ones &#8211; try to code a jQuery plugin that closes your tags if not closed in IE ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saiko</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-2438</link>
		<dc:creator>Saiko</dc:creator>
		<pubDate>Mon, 29 Jun 2009 10:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-2438</guid>
		<description>This problem still occurs in jquery v1.3.2 by my knowledge.</description>
		<content:encoded><![CDATA[<p>This problem still occurs in jquery v1.3.2 by my knowledge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Padgett</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-1963</link>
		<dc:creator>Mike Padgett</dc:creator>
		<pubDate>Fri, 03 Apr 2009 11:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-1963</guid>
		<description>Hmm, I think what we have here is that, though the precise details in my example and the dev-ticket quoted in #5 are different, the general issue is the same and it isn&#039;t resolved as yet.</description>
		<content:encoded><![CDATA[<p>Hmm, I think what we have here is that, though the precise details in my example and the dev-ticket quoted in #5 are different, the general issue is the same and it isn&#8217;t resolved as yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scott e.</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-1954</link>
		<dc:creator>scott e.</dc:creator>
		<pubDate>Thu, 02 Apr 2009 21:37:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-1954</guid>
		<description>i am also receiving this same problem in ie that the other scott is getting... i am using 1.3.2.. it&#039;s not fixed.  any other word on this?</description>
		<content:encoded><![CDATA[<p>i am also receiving this same problem in ie that the other scott is getting&#8230; i am using 1.3.2.. it&#8217;s not fixed.  any other word on this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Padgett</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-1885</link>
		<dc:creator>Mike Padgett</dc:creator>
		<pubDate>Thu, 26 Mar 2009 22:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-1885</guid>
		<description>Hi Scott,

Well, John says it&#039;s sorted...

http://dev.jquery.com/ticket/4282

... and Brian says not. I haven&#039;t yet tested 1.3.2 myself with the example above. Have you?</description>
		<content:encoded><![CDATA[<p>Hi Scott,</p>
<p>Well, John says it&#8217;s sorted&#8230;</p>
<p><a href="http://dev.jquery.com/ticket/4282" rel="nofollow">http://dev.jquery.com/ticket/4282</a></p>
<p>&#8230; and Brian says not. I haven&#8217;t yet tested 1.3.2 myself with the example above. Have you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scott</title>
		<link>http://www.mikepadgett.com/technology/technical/jquery-html-strange-results-ie-events/comment-page-1/#comment-1883</link>
		<dc:creator>scott</dc:creator>
		<pubDate>Thu, 26 Mar 2009 21:17:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikepadgett.com/?p=746#comment-1883</guid>
		<description>i&#039;m getting the exact same thing in IE using .html() &quot;sizset= sizcache=&quot; what is the deal?</description>
		<content:encoded><![CDATA[<p>i&#8217;m getting the exact same thing in IE using .html() &#8220;sizset= sizcache=&#8221; what is the deal?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

