ciao,
con questo script, è possibile nascondere il link Mostra quando non è visibile la tabella sotto e viceversa? come andrebbe modificato?codice:<html> <head> <script> function show(obj) { eval("document.getElementById('show1').style.display='block'"); } function clearIt(obj) { eval("document.getElementById('show1').style.display='none'"); } </script> </head> <body> mostra chiudi <table border="1" width=600><tr><td style="display: block" id="show1">Hello</td></tr></table> </body> </html>