Desenvolvi um joguito simples do genero do mistermind mas não corre no IE não percebo porque. É feito em javascript e o form em HTML:
...
<javascript>
...
- Código: Seleccionar todos
<BODY OnLoad="New(document.gameForm)">
<ul>
<table border="1">
<tr>
<td>
<H1>Word Master Online</H1>
<P id="mesg">-</P>
<FORM NAME="gameForm">
<LABEL ID="mesg"></LABEL>
01: <INPUT TYPE="text" SIZE=20 READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
02: <INPUT TYPE="text" SIZE=20 value = "" READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
03: <INPUT TYPE="text" SIZE=20 READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
04: <INPUT TYPE="text" SIZE=20 READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
05: <INPUT TYPE="text" SIZE=20 READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
06: <INPUT TYPE="text" SIZE=20 READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
07: <INPUT TYPE="text" SIZE=20 READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
08: <INPUT TYPE="text" SIZE=20 READONLY style="{ font-family: 'Courier New',Courier,Freemono,'Nimbus Mono L',monospace ; text-align: right }">
<INPUT TYPE="text" SIZE=3 READONLY style="{ text-align: center; font-weight : bold }"</INPUT> <br>
<p>
<INPUT TYPE="button" VALUE="Novo" OnClick="New(gameForm)" style="{ font-size : xx-small }">
<INPUT TYPE="button" VALUE="Espreitar" OnClick="Cheat(gameForm)" style="{ font-size : xx-small }">
<INPUT TYPE="button" VALUE="Jogar" OnClick="Try(gameForm)" style="{ font-weight : bold }">
</p>
</FORM>
</td>
</tr>
</table>
</ul>
</BODY>
O que será? Para mim o erro estará no HTML não no javascript...
Obrigado.


