Can someone help me with this simple code, each time i try to run it i receive this error message: "object expected" at line 18, <INPUT TYPE=button.....> line
<html>
<head>
<title>Just testing.....</title>
</head>
<body>
<script language="JavaScript">
function clicked() {
form1.data=8;
}
}
</script>
<center>
<br><h1>Just Testing...</h1><br>
<form name=form1>
<input type=text name=data>
<br>
<br>
<input type=button name="Send" value="Click" onclick="clicked();">
<br>
</form>
</center>
</body>
</html>
thanks!
<html>
<head>
<title>Just testing.....</title>
</head>
<body>
<script language="JavaScript">
function clicked() {
form1.data=8;
}
}
</script>
<center>
<br><h1>Just Testing...</h1><br>
<form name=form1>
<input type=text name=data>
<br>
<br>
<input type=button name="Send" value="Click" onclick="clicked();">
<br>
</form>
</center>
</body>
</html>
thanks!