On Sunday 01 September 2002 02:52, Øystein Håland wrote:
> This is my form:
>
> Your name:
> Group:
>
>
>
> and the function validate:
> function validate() {
> var ok=true;
> if (document.answerform.name.value=='') {
> ok=false;
> alert('Please write Your name')
> document.a
This is my form:
Your name:
Group:
and the function validate:
function validate() {
var ok=true;
if (document.answerform.name.value=='') {
ok=false;
alert('Please write Your name')
document.answerform.name.focus();
document.answerform.name.select();
}
if (document.answer
2 matches
Mail list logo