Ciao, sto cercando di scrivere uno script che flagghi una checkbox a seconda che una textarea sia vuota o meno.
<input id="check" type="checkbox" checked="checkTextArea()" />
<textarea id="oggetto_mail"</textarea>
Il value della checkbox sarebbe checked giusto ? quindi checked SI ma che valore dare a checked quando la textArea è vuota ?
function checkTextArea(){
var textarea = document.getElementById('oggetto_mail').value;
var checkbox = document.getElementById('check').checked;
if ( textarea == "'') checkbox.setAttribute('checked','unchecked');
else checkbox.setAttribute('checked','checked');
}