I\'m new to jQuery and was wondering how to use it to validate email addresses.
You can create your own function
function emailValidate(email){ var check = "" + email; if((check.search('@')>=0)&&(check.search(/\./)>=0)) if(check.search('@')