Return to Snippet

Revision: 8755
at October 6, 2008 05:18 by pollux


Initial Code
//called on onsubmit form event
function checkForm(event)
{
   var isValid = true; //contains the return value

   //apply rules on the form

   event.returnValue = isValid; //IE specific
   return isValid; //for standard browsers
}

Initial URL


Initial Description


Initial Title
Form checking with IE

Initial Tags
ie

Initial Language
JavaScript