id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
2701	"Security warning message with effect ""show"" on https"	jay	aflesler	"A security warning message occurs if you use the effect ""show"" on an iframe with Internet Explorer AND https.

Indeed, as mention in http://support.microsoft.com/default.aspx?scid=kb;en-us;261188, IE 6 displays the message ""This page contains both secure and nonsecure items."" if an iframe does not contain a src attribute through SSL. src=""javascript:void(0)"" removes the problem.

Fix (fast, but it works on ie6) :
Replace the line :
  var elem = jQuery(""<"" + this.tagName + "" />"").appendTo(""body"");
By :
  if (this.tagName == 'IFRAME') {
    var elem = jQuery(""<"" + this.tagName + "" src=\""javascript:void(0)\""/>"").appendTo(""body"");
  } else {
    var elem = jQuery(""<"" + this.tagName + "" />"").appendTo(""body"");
  }"	bug	closed	minor	1.2.4	effects	1.2.3	wontfix	show iframe https SSL			
