hi there;
i am having error here. it said object expected? pls point out where is my error, thanks.
---fisrt.jsp---
<%@ page language="java" %>
<%@ page import="java.util.*" %>
<!DOCTYPE HTML PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>Lomboz JSP</title>
<SCRIPT LANGUAGE="JavaScript src="first.js">
chk();
</SCRIPT>
</head>
<body bgcolor="#FFFFFF">
<br><center>Time now: <%= new Date() %></center>
<%
out.println("hello..."

;
%>
<form name="firstForm">
<input tpye="text" name="name">
<input type="button" value=" OK " onClick="chk()">
</form>
</body>
</html>
----first.js----
function chk() {
var txt = document.firstForm.name.value;
if (txt.length < 1) {
alert("please key in your name"

;
document.firstForm.name.focus();
}
else
alert ("hi ... " + txt);
}