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 language="JavaScript" type="text/JavaScript">
function calculate(){
var text1 = document.forms['myForm'].elements['text1'].value;
var text2 = document.forms['myForm'].elements['text2'].value;
text1 = text1.length;
var numExp = /^[-]?\d+(\.\d+)?$/;
if(numExp.test(text2)){
var result = text1 * text2;
document.forms['myForm'].elements['text3'].value = result;
} else {
alert('text 2 is not a number');
}
return false;
}
</script>
<form name="myForm" action="calculator.html" method="get">
Text 1: <input type="text" name="text1" /><br />
Text 2: <input type="text" name="text2" /><br />
Text 3: <input type="text" name="text3" readonly="readonly" />
<input type="submit" value="calculate" onClick="return calculate();" />
</form>