Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save asifkhankadiwala/b2c7d71eedd3302abce212698f4f7502 to your computer and use it in GitHub Desktop.

Select an option

Save asifkhankadiwala/b2c7d71eedd3302abce212698f4f7502 to your computer and use it in GitHub Desktop.
'list[]': {
required: true,
minlength: 1
}
-----------------------------
'list[]': {
required: "You must check at least 1 box",
maxlength: "Check no more than {0} boxes"
}
-------------------------
errorPlacement: function(error, element) {
if (element.is(':checkbox')){
error.insertAfter($('input[name="' + element.attr('name') + '"]').parent().parent());
}
else{
error.insertAfter(element);
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment