Hi.
Is it possible to check if all select values inside a div, inside a form equals 1? I dont want to write hundreds of if statements. Reason for this is that I am trying to validate the form, and want to check so that the user has selected something. Standard value in EVERY select list is 1 (not selected anything).
<form name="myform" onchange="return jsfunction();" etc...>
<div id="formdiv">many many selects, all having a selected option value of 1</div>
</form>
Thanks