Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.