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>
<title>Drop DOwn and Textbox</title>
<script language="javascript">
function displ()
{
if(document.myFORM.valu.options[0].value == true) {
return false
}
else {
document.myFORM.textfield.value=document.myFORM.valu.options[document.myFORM.valu.selectedIndex].value;
}
return true;
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table border="0" cellspacing="0" cellpadding="0" width="75%">
<tr>
<td width="100%"><form name="myFORM" onClick="return displ();">
<p>
<select name="valu" size="1">
<option value>Choose One</option>
<option value="MT001">MT0001 | Copper Cable Shield 1</option>
<option value="MT002">MT0002 | Copper Cable Shield 2</option>
<option value="MT003">MT0003 | Copper Cable Shield 3</option>
</select>
<input type="text" name="textfield">
</p>
</form>
</td>
</tr>
</table>
</body>
</html>