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. Quote Link to comment 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] Quote Link to comment 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.