I am using fckeditor inside an IFRAME, I notice that whenever you click on "insert image" or "insert url" or other similar button with iframe popup, the background will went white and only popup irame is clickable.
I use firebug to check the html code, noticing the parent of iframe , just before </body> is having extra html code as:
and also the html code of the pop up iframe, making them to overlap the whole window, not just inside the IFRAME where fckeditor is used.
Actually how can I do that if I need manual coding? I try to use parent.document.body.innerHTML to replace the code, but the page will refresh which is the effect i don't want.
I use firebug to check the html code, noticing the parent of iframe , just before </body> is having extra html code as:
<div style="border: 0pt none ; margin: 0pt; padding: 0pt; background-color: rgb(255, 255, 255); background-image: none; position: absolute; z-index: 11000; top: 0px; left: 0px; opacity: 0.5; width: 1134px; height: 1000px;"></div>
and also the html code of the pop up iframe, making them to overlap the whole window, not just inside the IFRAME where fckeditor is used.
Actually how can I do that if I need manual coding? I try to use parent.document.body.innerHTML to replace the code, but the page will refresh which is the effect i don't want.