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.
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
<!--
function addNewOption(txtName,selName){
var optionText;
eval("optionText = yourform."+txtName+".value");
var elem;
eval("elem = yourform."+selName);
elem.options[elem.options.length] = new Option(optionText,optionText);
elem.selectedIndex = elem.options.length - 1;
eval("yourform."+txtName+".value = '';");
}
//-->
</SCRIPT>
</head>
<body>
<form method=POST action="yourpage.asp" name="yourform">
<select name="selColor">
<option value=""> [Select Color] </option>
<option value="red"> Red </option>
<option value="blue"> Blue </option>
<option value="green"> Green </option>
</select>
<input type="button" value="<<" onClick="addNewOption('txtNewColor','selColor');">
<input type="text" name="txtNewColor">
</form>
</body>
</html>