I'm doing a form and what I want to do is click on a radio button to fill out other sections to fill out if they do not click, I can do this with javascripot and the onclick event but in contact form 7 as I would do it? since the onclick="" does not work.
I have this code in javascript
function mostrarCiudad(){
if (document.getElementById('notariosno').click == true;) {
document.getElementById('ciudadnotario').style.display='block';
} else {
document.getElementById('ciudadnotario').style.display='none';
}
}
Thanks