<?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: SimpleModal 1.2 Released</title>
	<atom:link href="http://www.ericmmartin.com/simplemodal-12-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ericmmartin.com/simplemodal-12-released/</link>
	<description></description>
	<lastBuildDate>Thu, 29 Dec 2011 18:15:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Eric Martin</title>
		<link>http://www.ericmmartin.com/simplemodal-12-released/#comment-7643</link>
		<dc:creator>Eric Martin</dc:creator>
		<pubDate>Wed, 25 Mar 2009 13:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=252#comment-7643</guid>
		<description>@response-guy - I assume that you comment is just spam, but I&#039;m not sure, so I thought I&#039;d let it through. 

First, sure an iframe *could* be a security risk, but since you are the developer controlling the code/site, I don&#039;t see how that concern is relevant here. Second, what iframe issues are you talking about? Third, this post is from last year.

So, if you are a real person with real questions/concerns, please clarify.</description>
		<content:encoded><![CDATA[<p>@response-guy - I assume that you comment is just spam, but I'm not sure, so I thought I'd let it through. </p>
<p>First, sure an iframe *could* be a security risk, but since you are the developer controlling the code/site, I don't see how that concern is relevant here. Second, what iframe issues are you talking about? Third, this post is from last year.</p>
<p>So, if you are a real person with real questions/concerns, please clarify.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: response-guy</title>
		<link>http://www.ericmmartin.com/simplemodal-12-released/#comment-7630</link>
		<dc:creator>response-guy</dc:creator>
		<pubDate>Tue, 24 Mar 2009 23:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=252#comment-7630</guid>
		<description>I agree with CharnaD.  iframes are seen as a security risk these days.  I love simplemodal but don&#039;t really use it because of the iframes issue.</description>
		<content:encoded><![CDATA[<p>I agree with CharnaD.  iframes are seen as a security risk these days.  I love simplemodal but don't really use it because of the iframes issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Martin</title>
		<link>http://www.ericmmartin.com/simplemodal-12-released/#comment-4806</link>
		<dc:creator>Eric Martin</dc:creator>
		<pubDate>Fri, 05 Dec 2008 22:36:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=252#comment-4806</guid>
		<description>@all - In 1.2.1, I changed the default for the &lt;code&gt;iframe&lt;/code&gt; option to &lt;code&gt;false&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>@all - In 1.2.1, I changed the default for the <code>iframe</code> option to <code>false</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery SimpleModal Plugin Version 1.2 with NicEdit WYSIWYG Editor</title>
		<link>http://www.ericmmartin.com/simplemodal-12-released/#comment-4802</link>
		<dc:creator>jQuery SimpleModal Plugin Version 1.2 with NicEdit WYSIWYG Editor</dc:creator>
		<pubDate>Fri, 05 Dec 2008 18:21:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=252#comment-4802</guid>
		<description>[...] NicEdit WYSIWYG Editor by Bill Beckelman 5. December 2008 11:21 With the release of Eric Martin&#039;s version 1.2 of the SimpleModal jQuery Plugin, I wanted to take a look at the new code and changes. At the same time I decided to try out the [...]</description>
		<content:encoded><![CDATA[<p>[...] NicEdit WYSIWYG Editor by Bill Beckelman 5. December 2008 11:21 With the release of Eric Martin's version 1.2 of the SimpleModal jQuery Plugin, I wanted to take a look at the new code and changes. At the same time I decided to try out the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Martin</title>
		<link>http://www.ericmmartin.com/simplemodal-12-released/#comment-4800</link>
		<dc:creator>Eric Martin</dc:creator>
		<pubDate>Fri, 05 Dec 2008 14:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=252#comment-4800</guid>
		<description>@CharnaD - Can you elaborate on &quot;iframes are not allowed due to the W3C standards&quot;?

If it is an issue, the iframe can be &quot;turned off&quot; using the iframe option:
&lt;pre&gt;&lt;code&gt;$.modal.defaults.iframe = false;
&lt;/code&gt;&lt;/pre&gt;
Or:
&lt;pre&gt;&lt;code&gt;jQueryObject.modal({iframe: false});
&lt;/code&gt;&lt;/pre&gt;

The reason for using the iframe is to prevent object bleed-through. Also, the iframe is always used for IE6 to prevent form element bleed-through. There are always other ways, but using an iframe seems to be the &quot;easiest&quot; ;)

I appreciate your comments/feedback!</description>
		<content:encoded><![CDATA[<p>@CharnaD - Can you elaborate on "iframes are not allowed due to the W3C standards"?</p>
<p>If it is an issue, the iframe can be "turned off" using the iframe option:</p>
<pre><code>$.modal.defaults.iframe = false;
</code></pre>
<p>Or:</p>
<pre><code>jQueryObject.modal({iframe: false});
</code></pre>
<p>The reason for using the iframe is to prevent object bleed-through. Also, the iframe is always used for IE6 to prevent form element bleed-through. There are always other ways, but using an iframe seems to be the "easiest" ;)</p>
<p>I appreciate your comments/feedback!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CharnaD</title>
		<link>http://www.ericmmartin.com/simplemodal-12-released/#comment-4798</link>
		<dc:creator>CharnaD</dc:creator>
		<pubDate>Fri, 05 Dec 2008 12:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericmmartin.com/?p=252#comment-4798</guid>
		<description>Iframes are not allowed due to W3C standards. May be you should find another way, cause people who try to follow W3C  will avoid your plugin.

i&#039;ll post some more comments when i test it</description>
		<content:encoded><![CDATA[<p>Iframes are not allowed due to W3C standards. May be you should find another way, cause people who try to follow W3C  will avoid your plugin.</p>
<p>i'll post some more comments when i test it</p>
]]></content:encoded>
	</item>
</channel>
</rss>

