Jump to content

Please help with field enabling


lingo5

Recommended Posts

Hi,I have a form with these fields:

 

<input name="cliente_iSclient" type="radio" id="yes" value="1" onclick="enable_fields();"/>
<input name="cliente_iSclient" type="radio" id="no" value="0" checked="checked" ;" />

<select disabled="disabled" name="cliente_isclientOf" id="cliente_isclientOf">
<option value="">Please select</option>
</select>

<input name="cliente_isdistributor" disabled="disabled" type="checkbox" id="cliente_isdistributor" value="1" />

 

Now, when I click on the radio button with id="yes", the following script is executed:

 

<script>
function enable_fields()
{
if(document.getElementById('yes').checked==true)
{
document.getElementById('cliente_isclientOf').disabled=false;
}
}
</script>

 

which enables the select with id="cliente_isclientOf.

 

My problem is that I want to click on the radio button id="yes" and enable id="cliente_isclientOf AND id="cliente_isdistributor" at the same time.

 

I have tried this but didn't work:

<script>
function enable_select()
{
if(document.getElementById('yes').checked==true)
{
document.getElementById('cliente_isclientOf','cliente_isdistributor').disabled=false;
}
}
</script>

 

Any ideas?. Thanks

Link to comment
https://forums.phpfreaks.com/topic/253491-please-help-with-field-enabling/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.