I am having trouble with a type-ahead suggest ajax call tripping the
infamous IE 6 error (http://support.microsoft.com/default.aspx?
scid=kb;en-us;261188) on an HTTPS connection to my app. IE 6 says:
"This page contains both secure and nonsecure items. Do you want to
display the nonsecure items?"
Unfortunately, I have attempted several solutions based on this bbs
and other sites, namely adding an iframe source to the results
declaration. jquery.autocomplete.js, line 11:
// Create results
var results = document.createElement("div");
// Create jQuery object for results
var $results = $(results);
// None of these work individually:
//$results.append($('<iframe src="' + window.location.protocol + '//'
+ window.location.hostname + window.location.pathname + 'blank.html"></
iframe>'));
//$results.append($('<iframe src="javascript:false;"></iframe>'));
//$results.append($('<iframe src="blank.html"></iframe>'));
//$results.append($('<iframe src="src="javascript:" />'));
Any other ideas?
Thank you,
Phillip