I need a very basic client-side form validation: whenever an invalid field is encountered display a standard windows dialog box, stop checking the remaining fields, and cancel submission.
What is the easiest way to do the above with jQuery?
I need a very basic client-side form validation: whenever an invalid field is encountered display a standard windows dialog box, stop checking the remaining fields, and cancel submission.
What is the easiest way to do the above with jQuery?
How about alert("message")?
Think about your users though - this might not be the best user experience.