llldnylll
Technical User
- May 21, 2003
- 89
I know we can validate fields, is there a way to validate List Menus?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="javascript">
function chkField(){
if (document.forms.form1.myselect.value==""){
alert("You must make a selection");
return false
}
}
</script>
<form name="form1" method="post" action="" onSubmit="return chkField()">