<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Amyst Design Company &#187; JQuery</title>
	<atom:link href="http://amystdesign.com/blog/category/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://amystdesign.com/blog</link>
	<description>Company Blog</description>
	<lastBuildDate>Sat, 03 Apr 2010 17:09:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>JQuery UI Dialog not showing up twice in IE ( invalid argument )</title>
		<link>http://amystdesign.com/blog/jquery/jquery-ui-dialog-not-showing-up-twice-in-ie-invalid-argument</link>
		<comments>http://amystdesign.com/blog/jquery/jquery-ui-dialog-not-showing-up-twice-in-ie-invalid-argument#comments</comments>
		<pubDate>Fri, 16 Oct 2009 00:24:19 +0000</pubDate>
		<dc:creator>Doug Linsmeyer</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://amystdesign.com/blog/?p=100</guid>
		<description><![CDATA[I personally love the JQuery library, it makes life soo much easier. Add to that the JQuery UI libraries and you have yourself a seriously mean platform to build killer applications. That said, I ran into a mean little bug that affects the way the UI Dialog shows up on the page in Internet Exploder, [...]]]></description>
			<content:encoded><![CDATA[<p>I personally love the JQuery library, it makes life soo much easier. Add to that the JQuery UI libraries and you have yourself a seriously mean platform to build killer applications. That said, I ran into a mean little bug that affects the way the UI Dialog shows up on the page in Internet Exploder, I know&#8230; stop rolling your eyes it is here to stay and we will need to learn to play nice. </p>
<p>The bug:<br />
Once a JQuery UI dialog has been initialized, opened once, and then closed it cannot be reopened in IE due to an &#8220;invalid argument&#8221; error. </p>
<p>The fix:<br />
Open up your copy of jquery.js (you do have it locally right?, latency alert!) around line 1060 look for: </p>
<pre class="brush: jscript;">
if ( set )
			elem[ name ] = value;
</pre>
<p>and change it to:</p>
<pre class="brush: jscript;">
if ( set )
			try{elem[ name ] = value;} catch (error){};
</pre>
<p>Viola!</p>
]]></content:encoded>
			<wfw:commentRss>http://amystdesign.com/blog/jquery/jquery-ui-dialog-not-showing-up-twice-in-ie-invalid-argument/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
