Skip to content

Instantly share code, notes, and snippets.

@andrebautista
Created January 31, 2014 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrebautista/8726498 to your computer and use it in GitHub Desktop.
Save andrebautista/8726498 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$("small.error").each(function(){
(this).closest("input").addClass("error");
});
});
<input class="string email optional" id="contact_form_email" name="contact_form[email]" size="50" type="email" value="fdsfs">
<small class="error">is invalid</small>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment