I am using Jquery Rich Text Editor (RTE) in a page accessed through HTTPS in IE6 browser. When the RTE loads I get a mixed-content warning saying:
'This page contains both secure and non secure items. Do you want to display the non secure item 开发者_开发技巧?'
This is probably happening because jquery while creating the RTE creates IFRAMES which have no 'src' attribute defined. This is making IE 6 produce this mix-content warning message.
Can anyone let me know a work around so that this mix-content warning message is not produced?
Thanks
Try using the network tab of Firebug to check if there are library references using HTTP. Maybe it has harcoded image references.
If the "no src" is the problem I'd try to set it to a blank.html file using jQuery after the Rich Text Editor is loaded.
精彩评论