I want to know that how can I display the error messages on the bottom of the screen by using the jquery,validator plugin
also it's suppose to display the one error at a time.
for eg:-
name:- first error will be of name
email:- once name is validated then email's error will be displayed
website:-finally website's error.
And how to highlight the textbox of the field one by one same style:
< input type="text" name="name" >
< input type="text" name="email" >
< input type="text" name="website" >
< div id='error' >if name is blank then display only name is blank, if not then check for email and after that website< /div >
I don't know the how the whole coding is going to look like.
Please provide the coding snippet.
Thanks in advance
Dave