HTTPS Security Alert in IE
There is a technique of using an IFRAME (under IE) to make Listboxes
not shine through.
If thise IFRAME does not possess a SRC attribute, a security alert is
given for HTTPS servers under IE.
I found it in jquery.autocomplete.js, but the comment there points to
the calendar widget too. The following patch should do.
var ifrm = document.createElement('iframe');
ifrm.setAttribute('src', 'javascript:void(0)');
$results.append(ifrm);
P.S. Does anyone know about a, not autocomplete, but *quick-type*
widget, where typing "global" will find "world global market" in popup
a scrollable list; just like the autocomplete, but scrollable? What is
the keyword to look for? Thanks.