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 type="text/css">
function popuplateTotal() {
var quantity = document.forms["formName"].elements["txtQuantity"].value;
var cost = document.forms["formName"].elements["txtCost"].value;
document.forms["formName"].elements["txtTotalCost"].value = quantity * cost;
}
</script>
<script type="text/[!]javascript[/!]">