Salve a tutti!
domanda veloce : come faccio per impostare la dimensione di una tabella da JS?
es.
codice:if(screen.width>1024) { document.nome_tabella.width="80%"; } else { document.nome_tabella.width="80%"; }
Salve a tutti!
domanda veloce : come faccio per impostare la dimensione di una tabella da JS?
es.
codice:if(screen.width>1024) { document.nome_tabella.width="80%"; } else { document.nome_tabella.width="80%"; }
Guybrush Threepwood
trovato
codice:if (screen.width>1024) { document.getElementById('tabe').style.width="1024"; } else { document.getElementById('tabe').style.width="800"; }
Guybrush Threepwood