aashishn86 0 Junior Poster

hii !!
i am using the onblur event for form validation to validate that a field should not be empty

i am using the following function

<scirpt type="text/javascript">
 function isEmpty(field)
 {
  if ( field.("<name from form>").value = ' ');
     alert("empty field");
 }
 </scirpt>

the problem is the event just gives a alert if the user leaves the field empty..
the user can still chose to ignore the alert and move forward
how can i make it necessary for the user to enter a value before moving on ?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.