Microsoft KB Archive/925014

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 09:25, 21 July 2020 by X010 (talk | contribs) (Text replacement - ">" to ">")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


You receive a security warning in Internet Explorer 7 and Internet Explorer 6 when you visit a Web page that is hosted on a secure Web site

Article ID: 925014

Article Last Modified on 10/27/2007



APPLIES TO

  • Windows Internet Explorer 7
  • Microsoft Internet Explorer 6.0



SYMPTOMS

When you use Windows Internet Explorer 7 or Internet Explorer 6 to visit a Web page that is hosted on a secure Web site (HTTPS), you unexpectedly receive the following security warning:

This page contains both secure and nonsecure items. Do you want to display the nonsecure items?

CAUSE

This problem occurs if the Web page script calls the removeChild() method to delete a DIV element that references a background image.

WORKAROUND

To work around this problem, use one of the following methods.

Method 1

Use the outerHTML property to delete the DIV element, as in the following example:

document.getElementById('myDiv').outerHTML="  "

Method 2

Put the background-image into a cascading style sheets file, as in the following example:

<style type="text/css">
{ background-image: url(image.jpg); } 
</style>

Keywords: kbtshoot kbwebbrowser kbprb kberrorsandwarnings KB925014