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?
Here is the function:
function styleNavigationCorners() {
if (!($.browser.msie && $.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
});
}
}
This still gives me the non-secure warning? :
function styleNavigationCorners() {
// if (!($.browser.msie && $.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
// });
// }
}
I have searched for duplicate function signatures have found none. Can anyone help? Thanks!
-Nick