+ 3
For example,
First of all give a name to the input box -
<input type="text" name="txtbox">
(<button onclick="press8">8</button>)
in javascript, you need to write like this -
function press8(){
txtbox.value += "8";
}
+ 2
Means there is no functions named press7, press8 etc.
You need to make those functions using javascript.
0
You called the function but there is no functions



