|
-
Dec 13th, 2001, 11:57 AM
#1
Thread Starter
Lively Member
Javascript error in netscape
//******************************************************************
//*Function verify
//*This function checks to see if fields are filled out properly.
//*Imports: form name
//*Exports: returns true if the form is filled out properly,
//* false otherwise.
//******************************************************************/
function verify(search){
//checks to see if Keyword is filled out.
if(search.keyword.value==""){
alert("Please enter a keyword.");
search.keyword.focus();
return false;
}
else return true;
}
// This function sets the focus so the user can input easily.
function set_focus(){
search.keyword.focus();
}
Can anyone see the problem?
Don't ever Ginop before you Ginip 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|