un bel mix
css
javascriptcodice:span#mostra { display: none; }
htmlcodice:function mostra() { if (document.getElementById('mostra').style.display=='none') { document.getElementById('mostra').style.display='inline'; } else { document.getElementById('mostra').style.display='none'; } }
codice:mostra <span id="mostra"> hello world! </spna>