Ragaaaaaazziiiiii!! Hanno cambiato il forum xD
E' da tanto che non c'entravo xD
Comunque, passiamo al problema: ho un codice di Javascript all'interno dell'head della pagina, ma quando lo richiamo all'interno della pagina, nel punto che mi serve, non funziona.. Premetto che non sono esperto in Javascript.. Però nell'evento onclick ho molte funzioni, le funzioni che vengono prima di nascondi() funzionano benissimo, quelle dopo invece non partono proprio.. :(
Codice HTML:
<head>
<title>Sito mio xD</title>
<link rel="stylesheet" href="css.css" type="text/css" />
<script type="text/javascript">
function nascondi()
{
document.getElementById('01').style.border='0px';
document.getElementById('02').style.border='0px';
document.getElementById('03').style.border='0px';
document.getElementById('04').style.border='0px';
document.getElementById('05').style.border='0px';
document.getElementById('06').style.border='0px';
document.getElementById('07').style.border='0px';
document.getElementById('08').style.border='0px';
document.getElementById('09').style.border='0px';
document.getElementById('10').style.border='0px';
document.getElementById('11').style.border='0px';
document.getElementById('12').style.border='0px';
document.getElementById('13').style.border='0px';
document.getElementById('14').style.border='0px';
document.getElementById('15').style.border='0px';
document.getElementById('16').style.border='0px';
document.getElementById('17').style.border='0px';
document.getElementById('18').style.border='0px';
document.getElementById('19').style.border='0px';
document.getElementById('20').style.border='0px';
}
</script>
</head>
...CODICI PAGINA...
<table>
<tr>
<td style="width: 100px; height: 60px; background: url(img/Sfondi/02.png) top center repeat; cursor: pointer; curosor: hand;" id="02" onclick="nascondi(); document.getElementById('back').value='02'; document.getElementById('02').style.border='3px solid lime';"></td>
<td style="width: 100px; height: 60px; background: url(img/Sfondi/03.png) top center repeat; cursor: pointer; curosor: hand;" id="03" onclick="document.getElementById('back').value='03'; nascondi(); document.getElementById('03').style.border='3px solid lime';"></td>
<td style="width: 100px; height: 60px; background: url(img/Sfondi/08.png) top center repeat; cursor: pointer; curosor: hand;" id="08" onclick="document.getElementById('back').value='08'; nascondi(); document.getElementById('08').style.border='3px solid lime';"></td>
<td style="width: 100px; height: 60px; background: url(img/Sfondi/09.png) top center repeat; cursor: pointer; curosor: hand;" id="09" onclick="document.getElementById('back').value='09'; nascondi(); document.getElementById('09').style.border='3px solid lime';"></td>
</tr>
</table>