JQuery Asual Address Plugin causing IE6 warning "unsafe elements"

The name says a lot about everything. If I turn on the Adaptive Address Plugin for jQuery in my project, IE6 warns the user about "both safe and insecure elements." I split the page to zero, but:

<html xmlns="http://www.w3.org/1999/xhtml">
   <head runat="server">
        <title>Title</title>
   </head>
<body>
    <script src="js/jquery.1.4.4.min.js" type="text/javascript"></script>

    <script src="js/jquery.address-1.3.min.js" type="text/javascript"></script>

</body>
</html>

Put this in a secure site, and IE6 will display a warning. I was looking for a source for an ordinary criminal who is iframetagged "about:blank" src, but did not see anything like the problem.

Any help is appreciated.

Update . I tried Fiddler to determine where an unsafe item came from. Only three things are listed below:

200   HTTPS   CONNECT         *websiteurl*:443
200   HTTPS   *websiteurl*    Default.aspx
200   HTTPS   *websiteurl*    /js/jquery.1.4.4.min.js
200   HTTPS   *websiteurl*    /js/jquery.address-1.3.min.js

, "" .

200   HTTPS   CONNECT         *websiteurl*:443
200   HTTPS   *websiteurl*    Default.aspx
200   HTTPS   *websiteurl*    /js/jquery.1.4.4.min.js
200   HTTPS   *websiteurl*    /js/jquery.address-1.3.min.js
400   HTTPS   *websiteurl*    pagerror.gif

pagerror.gif, , IE , , .

+5
2

, . , iframe.

: iframe a src, . javascript:false; . , ,

 _frame = _d.createElement((frameset ? '' : 'i') + 'frame');

_frame = _d.createElement((frameset ? '' : 'i') + 'frame');
_frame.src = 'javascript:false;';

, -!

+4

1 - Fiddler Web Debugger HttpFox ( - -).

2 - .

3 - , , . - , https.

+1

All Articles