lingo5 Posted December 19, 2011 Share Posted December 19, 2011 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 Quote Link to comment https://forums.phpfreaks.com/topic/253491-please-help-with-field-enabling/ Share on other sites More sharing options...
premiso Posted December 19, 2011 Share Posted December 19, 2011 if(document.getElementById('yes').checked==true) { document.getElementById('cliente_isclientOf').disabled=false; document.getElementById('cliente_isdistributor').disabled=false; } Quote Link to comment https://forums.phpfreaks.com/topic/253491-please-help-with-field-enabling/#findComment-1299415 Share on other sites More sharing options...
lingo5 Posted December 19, 2011 Author Share Posted December 19, 2011 thanls premiso, but now none of the 2 fields are enabled. Quote Link to comment https://forums.phpfreaks.com/topic/253491-please-help-with-field-enabling/#findComment-1299420 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.