Forum Moderators: open
ok, i've something like this:
<script>
function hidediv() {
document.getElementById("divid").style.visibility = "hidden";
}
</script>
<div id="divid" style="position:absolute;">
<iframe src="a_page_with_table.php"></iframe>
<a href="#" onclick="hidediv()">close</a>
</div>
Ok, So what I do is that I hide the DIV when clicking on the close link.
Everything disapear as it should, except that the tables background stay visible...
If I select the text on the page under the rectangle artefact with my mouse, the artefact disapear...
--------------
How can I remove thoses artefacts?
You might work around it by using a show/hide function rather than a simple hide function. Then you could switch an apparently empty div (perhaps an image that matches the min background) to "visible" when you hide the displayed table.
By giving IE something else to render, it should eliminate the visible artifacts - at least that's my hope.