<?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: Shadowbox and Internet Explorer 8</title>
	<atom:link href="http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/feed" rel="self" type="application/rss+xml" />
	<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8</link>
	<description>A mixture of musings on web design &#38; development, history, and life</description>
	<lastBuildDate>Wed, 08 Feb 2012 12:31:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ian Devlin</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-1565</link>
		<dc:creator>Ian Devlin</dc:creator>
		<pubDate>Wed, 13 Jul 2011 19:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-1565</guid>
		<description>You&#039;re welcome Tom, kisses not needed :-)</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome Tom, kisses not needed <img src='http://www.iandevlin.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-1564</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 13 Jul 2011 19:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-1564</guid>
		<description>If I could, I would kiss you!!! Simple fix, works perfectly in ie8 now. Thank you!!!</description>
		<content:encoded><![CDATA[<p>If I could, I would kiss you!!! Simple fix, works perfectly in ie8 now. Thank you!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin Jaurkar</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-1563</link>
		<dc:creator>Nitin Jaurkar</dc:creator>
		<pubDate>Tue, 12 Jul 2011 12:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-1563</guid>
		<description>Thank you very much sir. The CSS code in skin.css file helped me to remove the error. God Bless you.</description>
		<content:encoded><![CDATA[<p>Thank you very much sir. The CSS code in skin.css file helped me to remove the error. God Bless you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ian</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-1444</link>
		<dc:creator>ian</dc:creator>
		<pubDate>Tue, 11 Jan 2011 10:04:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-1444</guid>
		<description>Well Adam I wrote this ages ago so it goes without saying that Shadowbox.js has moved on since then and there may now be different issues with different fixes. So no need to be arsey about it.

Glad Mason&#039;s solution works.</description>
		<content:encoded><![CDATA[<p>Well Adam I wrote this ages ago so it goes without saying that Shadowbox.js has moved on since then and there may now be different issues with different fixes. So no need to be arsey about it.</p>
<p>Glad Mason&#8217;s solution works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-1443</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 11 Jan 2011 03:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-1443</guid>
		<description>Thank you mason, your trick helped. The original blog did not.</description>
		<content:encoded><![CDATA[<p>Thank you mason, your trick helped. The original blog did not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mason</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-843</link>
		<dc:creator>Mason</dc:creator>
		<pubDate>Thu, 30 Sep 2010 17:34:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-843</guid>
		<description>In case anyone else hits a problem similar to this, and goes googling, but this doesn&#039;t help (like for me), I found the solution here:
http://shadowbox-js.com/forum.html#nabble-td2634444

I was using:
&lt;code&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
Shadowbox.init({players:[&#039;qt&#039;]});
&lt;/script&gt;
&lt;/code&gt;

But on systems that didn&#039;t have quicktime installed, it tried to show an error, I&#039;m guessing using the &#039;html&#039; &#039;player&#039;, and failed.  So instead I used:
&lt;code&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
Shadowbox.init({players:[&#039;qt&#039;,&#039;html&#039;]});
&lt;/script&gt;
&lt;/code&gt;

and I was bathed in the warmth of error free IE.</description>
		<content:encoded><![CDATA[<p>In case anyone else hits a problem similar to this, and goes googling, but this doesn&#8217;t help (like for me), I found the solution here:<br />
<a href="http://shadowbox-js.com/forum.html#nabble-td2634444" rel="nofollow">http://shadowbox-js.com/forum.html#nabble-td2634444</a></p>
<p>I was using:<br />
<pre><code>
&lt;script type=&quot;text/javascript&quot;&gt;
Shadowbox.init({players:[&#039;qt&#039;]});
&lt;/script&gt;
</code></pre></p>
<p>But on systems that didn&#8217;t have quicktime installed, it tried to show an error, I&#8217;m guessing using the &#8216;html&#8217; &#8216;player&#8217;, and failed.  So instead I used:<br />
<pre><code>
&lt;script type=&quot;text/javascript&quot;&gt;
Shadowbox.init({players:[&#039;qt&#039;,&#039;html&#039;]});
&lt;/script&gt;
</code></pre></p>
<p>and I was bathed in the warmth of error free IE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ian</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-596</link>
		<dc:creator>ian</dc:creator>
		<pubDate>Mon, 17 May 2010 08:18:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-596</guid>
		<description>Indeed, the link you referenced is exactly the same as the fix I suggested.</description>
		<content:encoded><![CDATA[<p>Indeed, the link you referenced is exactly the same as the fix I suggested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Info24h</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-595</link>
		<dc:creator>Info24h</dc:creator>
		<pubDate>Mon, 17 May 2010 08:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-595</guid>
		<description>It work fire

See more ... 
www .info24h.net/shadowbox/Shadowbox%20not%20working%20with%20Internet%20Explorer%208</description>
		<content:encoded><![CDATA[<p>It work fire</p>
<p>See more &#8230;<br />
www .info24h.net/shadowbox/Shadowbox%20not%20working%20with%20Internet%20Explorer%208</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ian</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-82</link>
		<dc:creator>ian</dc:creator>
		<pubDate>Wed, 09 Dec 2009 12:35:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-82</guid>
		<description>Yeah if you use the ASCII code for the angled brackets instead, it&#039;s fine. Annoying though, would have thought Wordpress would have implemented that. There must be a plugin for it somewhere.

You can also put it into &lt;code&gt; tags.

&lt;code&gt;&lt;meta http-equiv=”X-UA-Compatible” content=”IE=7″&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Yeah if you use the ASCII code for the angled brackets instead, it&#8217;s fine. Annoying though, would have thought WordPress would have implemented that. There must be a plugin for it somewhere.</p>
<p>You can also put it into &lt;code&gt; tags.</p>
<p><code>&amp;lt;meta http-equiv=”X-UA-Compatible” content=”IE=7″&amp;gt;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tady</title>
		<link>http://www.iandevlin.com/blog/2009/10/webdev/shadowbox-and-internet-explorer-8/comment-page-1#comment-81</link>
		<dc:creator>Tady</dc:creator>
		<pubDate>Wed, 09 Dec 2009 12:33:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.iandevlin.net/blog/?p=42#comment-81</guid>
		<description>Probably didn&#039;t render this as I put the pointy brackets on it so it may have actually deleted it, what with spam protection and all. Here&#039;s the meta data again anyway...

meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=7&quot;</description>
		<content:encoded><![CDATA[<p>Probably didn&#8217;t render this as I put the pointy brackets on it so it may have actually deleted it, what with spam protection and all. Here&#8217;s the meta data again anyway&#8230;</p>
<p>meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=7&#8243;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

