|
|
This page contain some sample programs :
click the link to activate program:
//this is the code for the multiply 'em together program.
<html>
<head>
<title> A very Simple Calculator</title>
<script language= "JavaScript">
<!--hide me form old browsers
function multiplyTheFields()
{
var number_one=window.document.the_form.field_one.value;
var number_two=window.document.the_form.field_two.value;
var product = number_one * number_two;
window.document.the_form.the_answer.value=product;
}
//end hiding coment -->
</script>
</head>
<body>
<form name= "the_form">
Number 1:<input type= "text" name = "field_one"><br>
Number 2:<input type="text" name="field_two"><br>
The Product:<input type="text" name="the_answer"><br>
<a href="#" onClick = "multiplyTheFields(); return false;">multiply ‘em together!</a>
</form>
</body>
</html>
HOME ABOUT ME TECHNOLOGY EQUIPMENT PHOTOS CERTIFICATES REFERRENCES |