Skip to content

Instantly share code, notes, and snippets.

@trullock
Created August 1, 2012 08:38
Show Gist options
  • Select an option

  • Save trullock/3225062 to your computer and use it in GitHub Desktop.

Select an option

Save trullock/3225062 to your computer and use it in GitHub Desktop.
var $form = this.$div.find('form');
$form.find('input:not(:checkbox), select').blur(function () {
var $elem = $(this);
$form.ajaxValidate({
inputContainer: function ($frm) {
return $elem.parent();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment