laxplayin24 Posted May 25, 2006 Share Posted May 25, 2006 I was wondering if it is possible to disable certain fields in a from based on which drop down is selected. If so could someone help me out i've been looking on the web and haven't found anything. Thanks. Link to comment https://forums.phpfreaks.com/topic/10436-disable-field-based-on-drop-down/ Share on other sites More sharing options...
nogray Posted May 25, 2006 Share Posted May 25, 2006 You'll need to set a javascript function to disable and enable fields when the select menu is changed.The select menu will look something like this[code]<select onChange="disable_fields(this.value);"><option value="....">....</option></select>[/code]In your javascript add a function -disable_fields()[code]function disable_fields(val){ if (val == "...."){ // disabling the field document.getElementById('field_id').disabled = true; } else { // enabling the field document.getElementById('field_id').disabled = false; }}[/code] Link to comment https://forums.phpfreaks.com/topic/10436-disable-field-based-on-drop-down/#findComment-38960 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.