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.
<iframe id='checkPart' width='0' src='partForm.html'></iframe>
<html>
<body>
<form name='checkPartForm' action='checkPartDatabase.jsp'>
<input type='hidden' name='partNumber'>
</form>
</body>
</html>
... <JSP code>
<html>
<head>
<script>
alert("Part number <%=partNumber%> is a <%=description%>");
this.location = partForm.html; //readies it for the next go
</script>
</head>
</html>
function checkPart()
{
checkPartFrame.checkPartForm.partNumber.value = document.formName.textFieldName.value;
checkPartFrame.checkPartForm.submit();
}