I am experiencing an issue with my webpage where the iFrame is displaying with a white background in IE, while it shows up with a blue background in Firefox and Chrome. I have attempted various solutions to make the background of the iframe blue or transparent including:
- adding the "allowtransparency=true" tag to the iframe
- applying "background-color: blue" & "background-color: transparent" styles inside the iframe using JavaScript
- wrapping the iframe in a span tag with a style of "background-color: blue"
- considering changing the iframe to a div, but this was not feasible due to using AJAX to retrieve content from an XML file (as the XMLHttpRequest object can only be used once)
If anyone has a solution to help me resolve this issue, please share your knowledge. It's worth mentioning that the only success I achieved so far was by using style="filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0)".
Thank you for any assistance!