<?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: IE Mixed Content - Page Contains Both Secure and Nonsecure Items</title>
	<atom:link href="http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/</link>
	<description>Progressive Web Development</description>
	<lastBuildDate>Wed, 03 Mar 2010 14:50:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Graham</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-17951</link>
		<dc:creator>Graham</dc:creator>
		<pubDate>Wed, 03 Mar 2010 14:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-17951</guid>
		<description>An issue that I ran into with IE displaying the &#039;non-secure&#039; message is when I was messing around with new nodes and their innerHTML.

the right way do it goes something like this:

    var originalDiv = document.getElementById(&quot;Original&quot;);
    var extraCopyDiv = document.getElementById(&quot;ExtraCopy&quot;);
    var newElement = originalDiv .cloneNode(true);
    extraCopyDiv.appendChild(newElement );
    var newElementHTML = newElement.innerHTML;
    newElementHTML = (whatever you want);

If you would modify the innerHTML of an element that hasn&#039;t been attached to the document and then try to add it to the document using &#039;appendChild()&#039;, you&#039;ll get the &#039;non-secure&#039; message.</description>
		<content:encoded><![CDATA[<p>An issue that I ran into with IE displaying the 'non-secure' message is when I was messing around with new nodes and their innerHTML.</p>
<p>the right way do it goes something like this:</p>
<p>    var originalDiv = document.getElementById("Original");<br />
    var extraCopyDiv = document.getElementById("ExtraCopy");<br />
    var newElement = originalDiv .cloneNode(true);<br />
    extraCopyDiv.appendChild(newElement );<br />
    var newElementHTML = newElement.innerHTML;<br />
    newElementHTML = (whatever you want);</p>
<p>If you would modify the innerHTML of an element that hasn't been attached to the document and then try to add it to the document using 'appendChild()', you'll get the 'non-secure' message.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jordan</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-17876</link>
		<dc:creator>jordan</dc:creator>
		<pubDate>Wed, 24 Feb 2010 02:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-17876</guid>
		<description>Glad you found the fix Jeff. I updated Wordpress so that it doesn&#039;t use curly quotes anymore. Thanks for pointing that out.</description>
		<content:encoded><![CDATA[<p>Glad you found the fix Jeff. I updated Wordpress so that it doesn't use curly quotes anymore. Thanks for pointing that out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Richards</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-17874</link>
		<dc:creator>Jeff Richards</dc:creator>
		<pubDate>Wed, 24 Feb 2010 00:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-17874</guid>
		<description>Thanks for posting these I was stuck with the 
//If you have a JavaScript that calls removeChild() on a node that has a background image, it may cause this error. You can set outerHTML = ” instead without consequence. Retarded, but it works. //

problem and it appears that the fix you suggested works.  I&#039;d just point out that outerHTML needs to be set to &#039;&#039; that is two single quotes.  The cut and paste of your code gave me a smart quote.. and that didn&#039;t work.  

Would have taken me ages to find that bug...</description>
		<content:encoded><![CDATA[<p>Thanks for posting these I was stuck with the<br />
//If you have a JavaScript that calls removeChild() on a node that has a background image, it may cause this error. You can set outerHTML = ” instead without consequence. Retarded, but it works. //</p>
<p>problem and it appears that the fix you suggested works.  I'd just point out that outerHTML needs to be set to '' that is two single quotes.  The cut and paste of your code gave me a smart quote.. and that didn't work.  </p>
<p>Would have taken me ages to find that bug...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jean-Luc</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-16969</link>
		<dc:creator>Jean-Luc</dc:creator>
		<pubDate>Mon, 14 Dec 2009 14:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-16969</guid>
		<description>Good tips. Mine was the codebase. 

Thanks</description>
		<content:encoded><![CDATA[<p>Good tips. Mine was the codebase. </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jordan</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-16419</link>
		<dc:creator>jordan</dc:creator>
		<pubDate>Sat, 14 Nov 2009 17:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-16419</guid>
		<description>@AirBear: you may try using a different menu, such as suckerfish or plain CSS dropdowns. I can&#039;t see any need for frames to display a menu.

@House: sorry, I don&#039;t understand Russian

@Robert: glad the article was helpful for you. Best of luck!

@Hire: you can use a relative URL if the image is on your server.

For example, instead of linking to http://mysite.com/assets/myimage.jpg you would link to /assets/myimage.jpg

If it&#039;s not on your site, you would need to change it to https://someoneelsessite.com/assets/theirimage.jpg

If they don&#039;t have SSL, you will need to download the image to your own site, and link to it with a relative path or with https.</description>
		<content:encoded><![CDATA[<p>@AirBear: you may try using a different menu, such as suckerfish or plain CSS dropdowns. I can't see any need for frames to display a menu.</p>
<p>@House: sorry, I don't understand Russian</p>
<p>@Robert: glad the article was helpful for you. Best of luck!</p>
<p>@Hire: you can use a relative URL if the image is on your server.</p>
<p>For example, instead of linking to <a href="http://mysite.com/assets/myimage.jpg">http://mysite.com/assets/myimage.jpg</a> you would link to /assets/myimage.jpg</p>
<p>If it's not on your site, you would need to change it to <a href="https://someoneelsessite.com/assets/theirimage.jpg">https://someoneelsessite.com/assets/theirimage.jpg</a></p>
<p>If they don't have SSL, you will need to download the image to your own site, and link to it with a relative path or with https.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hire php programmer</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-16417</link>
		<dc:creator>Hire php programmer</dc:creator>
		<pubDate>Sat, 14 Nov 2009 09:59:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-16417</guid>
		<description>Hello

can you also explain how to call images from css when page are loaded using https?

thanks</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>can you also explain how to call images from css when page are loaded using https?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Scanlon</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-16396</link>
		<dc:creator>Robert Scanlon</dc:creator>
		<pubDate>Thu, 12 Nov 2009 10:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-16396</guid>
		<description>Thanks Jordan - that fiddler saved me!

It was a meta-call to a swfobject.js - just needed to make it https and hey presto.

Thanks (found you on Google)</description>
		<content:encoded><![CDATA[<p>Thanks Jordan - that fiddler saved me!</p>
<p>It was a meta-call to a swfobject.js - just needed to make it https and hey presto.</p>
<p>Thanks (found you on Google)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: House</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-16251</link>
		<dc:creator>House</dc:creator>
		<pubDate>Thu, 29 Oct 2009 21:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-16251</guid>
		<description>Очень интересно!!! Только не очень могу понять как часто обновляется ваш блог?</description>
		<content:encoded><![CDATA[<p>Очень интересно!!! Только не очень могу понять как часто обновляется ваш блог?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AirBear</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-16010</link>
		<dc:creator>AirBear</dc:creator>
		<pubDate>Sun, 18 Oct 2009 12:56:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-16010</guid>
		<description>I have applied all of the above mentioned fixes (Thank you) and this eliminated some of our issues. Unfortunatly my end user is the general public and changing the settings in the browser is not an option. We have narrowed it down to the menu on the pages whhich were built using frames. ie6 appears to see this as unsecure and still throws the pop-up.</description>
		<content:encoded><![CDATA[<p>I have applied all of the above mentioned fixes (Thank you) and this eliminated some of our issues. Unfortunatly my end user is the general public and changing the settings in the browser is not an option. We have narrowed it down to the menu on the pages whhich were built using frames. ie6 appears to see this as unsecure and still throws the pop-up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: igilbeys</title>
		<link>http://www.zorked.com/security/ie-mixed-content-secure-nonsecure-items/#comment-15671</link>
		<dc:creator>igilbeys</dc:creator>
		<pubDate>Tue, 22 Sep 2009 19:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorked.com/?p=20#comment-15671</guid>
		<description>you&#039;re da man!</description>
		<content:encoded><![CDATA[<p>you're da man!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
