ciaao....
vorrei riuscire ad accedere a tutte le checkbox che ho in un iframe, che a sua volta e' in un form..
Le sto provando tutte ma non riesco ad accedere .
Fin ora ho fatto senza iframe.... e gestivo cosi la cosa
....ora pero' le checkbox sono in un iframe....Codice PHP:
for (i=0; i<form.elements.length; i++) {
if (form.elements[i].type == "checkbox") {
if (form.elements[i].checked)
}
}
come posso fare?
grazzie