Reputation: 14008
my site is https and so I had to go through it and make sure everything on the page was secure. This worked for every browser except IE6, which gives an error saying that the page contains both secure and non-secure items. I cannot find a non-secure item on this page and it is driving me mad! Can anyone spot whats causing it?
The site is http://preview.tinyurl.com/4kk5u7q
Thanks
Upvotes: 0
Views: 401
Reputation: 559
Agreed with Chris.
This bug affects both <FRAME> and <IFRAME> element.
IE checks whether the attribute "src" points to a realistic page or not. It won't pass even if "src" attribute is simply missing. Try the followings:
Just create a blank page named "blank.html" or whatever you want.
Then you can point "src" attribute to the blank page when <FRAME> or <IFRAME> element is being created.
Example as below:
<frame src="blank.html" id="foo" name="foo" >
This should do the job;)
Upvotes: 0
Reputation: 137787
When I try browsing the page (with Safari on OSX, in case it matters) I see that there are some resources which are described as about:blank
. IIRC, IE6 thinks that that source is insecure. (I also get a syntax error in one of the inlined scripts.)
Upvotes: 3