Skip to content

Instantly share code, notes, and snippets.

@csalgueiro
Created October 8, 2013 11:35
Show Gist options
  • Save csalgueiro/6883364 to your computer and use it in GitHub Desktop.
Save csalgueiro/6883364 to your computer and use it in GitHub Desktop.
Add Custom Validation
$("#"+formid).find("input[name^='losqempiecenpor']").each(function () {
var $element = $(this);
$element.rules('add', { required: true, maxlength:30 });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment