wrote:
> Hi Martin. I wasn't keen on posting my site as it's not finished yet,
> but here goes anyway. The example is quite simple. Just click on the
> 'Click here for...' link near the top of the page.
>
> http://roadsidepicnic.co.uk/code/
Somehow IE has problems with your markup and loses the div id="layer2".
I suspect that your XHTML that is partly not marked up to be backwards
compatible with HTML is the problem. So use e.g.
<br />
and not
<br/>
use
<img />
and not
<img/>
and make that
<applet code="TicTacToe.class" archive="TicTacToe.jar" width="570"
height="600"></applet>
with a closing </applet> tag, don't use pure XML
<applet code="TicTacToe.class" archive="TicTacToe.jar" width="570"
height="600"/>
as HTML parsers might have problems with that.
I however have not tried whether that fixes the problem, I hope it does.
--
Martin Honnen
http://JavaScript.FAQTs.com/