You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When performing removeChild() on an element with background-image set it will trigger a false mixed content warning. You need to remove the background-image first or use outerHtml = ''.
The text was updated successfully, but these errors were encountered:
Fixed this issue for IE7 by replacing this line with the following:
elementStyle.backgroundImage = "none";
The comment above it says:
// set inline background image to the transparent spacer gif
// this allows JavaScript to later set it to "none"
But I didn't see any issues in IE7 with my change. It may not work for IE6 or something, but I didn't need to worry about that since we don't support it.
Hope this helps someone else that spent a full day tracking this down.
See: http://support.microsoft.com/kb/925014
When performing
removeChild()
on an element withbackground-image
set it will trigger a false mixed content warning. You need to remove thebackground-image
first or useouterHtml = ''
.The text was updated successfully, but these errors were encountered: