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.
select[0]
<form name="myForm" action="" onsubmit="return(validate());">
<select name="requirements[0][]" multiple size=10>
<option>1</option><option>2</option><option>3</option>
<option>11</option><option>12</option><option>13</option>
</select>
<input type="submit"/>
</form>
<script type="text/javascript">
function validate() {
var b_valid = true;
if (document.forms['myForm'].elements('requirements[0][]').selectedIndex == -1) b_valid = false;
if (!b_valid) alert('Error validating');
return b_valid;
}
</script>