Field_1 one has the following code on change.
el = document.getElementById(‘viewers’).style
if (field_1== “yes”) {
el.visibility = ‘hidden’
}else {
el.visibility = ‘visible’
}
This field is a dialog list with two values: yes and no. If field one is = to yes, I want to hide test_1. I have pass thru html around test_1. The field does not hide when I select yes. I am new to html. Do I need to put test_1 in a table? Any ideas. Thanks
test_1