Got a pop up result box:
<div id="info" class="info" onclick="hideinfo();"
style="z-index:16; visibility:hidden; background:white; padding:10px; border:3px solid red;
position:absolute; font-size:30px; line-height:30px;
left:216px; top:175px; width:400px; height:405px;">Correct! etc...</div>
When required, this is made visible in JS:
document.getElementById("info").style.visibility = "visible";
For some wierd reason, the first time this is set to visible in IE9, all or part of the border is missing. It's ok on 2nd or subsequent times in IE. It's always ok in Firefox etc and has a normal border if the element is set to visible in the HTML. Nowt else is being done to it in the jscript.
Any brill ideas? Ta.
<div id="info" class="info" onclick="hideinfo();"
style="z-index:16; visibility:hidden; background:white; padding:10px; border:3px solid red;
position:absolute; font-size:30px; line-height:30px;
left:216px; top:175px; width:400px; height:405px;">Correct! etc...</div>
When required, this is made visible in JS:
document.getElementById("info").style.visibility = "visible";
For some wierd reason, the first time this is set to visible in IE9, all or part of the border is missing. It's ok on 2nd or subsequent times in IE. It's always ok in Firefox etc and has a normal border if the element is set to visible in the HTML. Nowt else is being done to it in the jscript.
Any brill ideas? Ta.

Comment