[jQuery] blockUI + IE6 + secure page

[jQuery] blockUI + IE6 + secure page

Small workaround for the non-secured items popup that shows its ugly head when using blockUI in a secured page in IE6.
insert this piece of code:
if (this.ie6) {
   f.attr('src','javascript:document.write
("");');
}
before this line: this.g  = $([f[0],w[0],m[0]]).appendTo('body');
IE6 is now happy....
Also tried (unsuccessfully):
- javascript:void(); - throws error message
- javascript:void(0); - throws error message
- :// (from the jquery core script) - still shows the popup
- https:// - takes you to https:/// (weird)
- some_real_page.html - works, but not what I want
If anyone has ideas or a better solution... I am all ears!
Thanks,
Ilya
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/