Note that there are some explanatory texts on larger screens.

plurals
  1. POJavaScript Method results in Non Secure Item IE6
    text
    copied!<p>So I am baffled by this one. I have a function that is responsible for a non-secure item warning message to appear when viewing my web page from with IE6 on SSL. If I comment out the entire function the message goes way. If I just comment out the one method call it remains. What is really driving me nuts is if I remove all of the logic from within the method.... the message remains???!!! I literally have to comment out the whole method including the signature. The method contains JQuery library logic but I don't see why that would matter when all of the function logic is commented except for the signature. Has anyone seen this before?</p> <p>Here is the function:</p> <pre><code>function styleNavigationCorners() { if (!($.browser.msie &amp;&amp; $.browser.version.substr(0, 1) == '6')) { $(".DecisionPointTitle").corner({ tl: { radius: 8 }, tr: { radius: 8 }, bl: { radius: 8 }, br: { radius: 8 }, antiAlias: true, autoPad: false }); $(".DecisionPointHeadline").corner({ tl: { radius: 8 }, tr: { radius: 8 }, bl: false, br: false, antiAlias: true, autoPad: false }); $("#NavigationFooter").corner({ bl: { radius: 8 }, br: { radius: 8 }, tl: false, tr: false, antiAlias: true, autoPad: false }); } } </code></pre> <p>This still gives me the non-secure warning? :</p> <pre><code> function styleNavigationCorners() { // if (!($.browser.msie &amp;&amp; $.browser.version.substr(0, 1) == '6')) { // $(".DecisionPointTitle").corner({ // tl: { radius: 8 }, // tr: { radius: 8 }, // bl: { radius: 8 }, // br: { radius: 8 }, // antiAlias: true, // autoPad: false // }); // $(".DecisionPointHeadline").corner({ // tl: { radius: 8 }, // tr: { radius: 8 }, // bl: false, // br: false, // antiAlias: true, // autoPad: false // }); // $("#NavigationFooter").corner({ // bl: { radius: 8 }, // br: { radius: 8 }, // tl: false, // tr: false, // antiAlias: true, // autoPad: false // }); // } } </code></pre> <p>I have searched for duplicate function signatures have found none. Can anyone help? Thanks!</p> <p>-Nick</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload