il problema non si è risolto
ecco il codice:
colonna di sinistra col menù:
codice:
<table class='menu'>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
................
<td>Z</td>
</tr>
</table>
colonna centrale con le tabelle contenente i dati per categoria (che qui ho messo come lettere)
codice:
<table id='tabellaA' class='categorie' style="display:none">
....
codice asp che crea righe coi dati presi da database
........
</table>
<table id='tabellaB' class='categorie' style="display:none">
....
codice asp che crea righe coi dati presi da database
........
</table>
...........
..........
.........
</table>
funzione javascript
codice:
function vedi(id){
if(document.getElementById(id).style.display == 'none')
document.getElementById(id).style.display = '';
else
document.getElementById(id).style.display = 'none';
}
pensandoci adesso che lo riscrivo, può essere che il problema sia href='#'???
e se si, come potrei aggirare il problema?
grazie