March 15, 200917 yr I've got all text fields validating on a form but the drop down menu isn't validating. Is there a simple way to do this in dreamweaver? Its important people select an option from the list. Thanks guys
March 15, 200917 yr I don't know dreamweaver, but something like this should work. function valDrop(val) { if (val == '') return false; else return true; } <option value=""></option> <option value="1">One</option> <option value="2">Two</option> <option value="">This is not valid</option> <option value="3">Three</option> whatever options have value="" will not validate (So the first and fourth in that above example).
March 15, 200917 yr I've got all text fields validating on a form but the drop down menu isn't validating. Is there a simple way to do this in dreamweaver? Its important people select an option from the list. Thanks guys Hi you can put the option values that will valadate in an array and then if say you have one option that is say please select and this is not in the array it will not pass valadation this is another option you have
Create an account or sign in to comment