Hello.
I have been doing research for about a week on form validation (JS, jQuery, CSS).
I already have a nice form, but I need to add the validation elements.
I'm a bit stuck.
I know what I do and do not want with the validation:
Want:
* Clean, nice popups. Pretty and visually customizable
* Popup is initiated and displayed when field is blurred with an incorrect value within, for example: email@gmail (Notice, no ".com")
Don't Want:
* The standard, white popup box with an error displayed (I believe that is HTML)
Here is a simple example that I wish to modify from my form:
<label class="grey" for="log">Username:</label>
<input class="field" type="text" name="log" id="log" value="" size="23" />
This does not seem like it would be very difficult, but so far it is appearing to be so.
Any advice, direction or snippets to help me along my way would be very appreciated.
Thank you in advance,
Matthew