i've tried two methods but still don't work
e.g. one of my textfield is set to
<input type="text" class="inputtext" name="Subj[1]" value="">
the javascript is written as
if (document.form.item("Subj[]",1).value == "")
alert('Please fill in all \"Subject\" field.');
or
if (document.form.Subj[1].value == "")
alert('Please fill in all \"Subject\" field.');
but error still occur
anyone can help??