p2p.wrox.com - beginning_javascript archive
Our web spider found the following code snippet at p2p_wrox_com and contains information about asin and JavaScript.
t;SCRIPT LANGUAGE="JavaScript">
function computeNDisplay()
{
var first = document.addForm.firstValue.value;
var second  = document.addForm.secondValue.value;
var third = document.addForm.thirdValue.value;
var sumValue = document.addForm.sumValue.value;

sumValue = first + second + third;
}
</SCRIPT>

<FORM NAME="addForm">
<INPUT TYPE="text" NAME="firstValue">
<INPUT TYPE="text" NAME="firstValue">
</FORM>


Message #3 by "TurnenT" <turnent@c...> on Wed, 22 May 2002 15:13:08 -0700

 
Here is some code to get you started. Just save it as test.html and it'll
work

<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function computSum()
{
var first = document.addForm.first.value;             
Read the entire article....