Skip to content

Instantly share code, notes, and snippets.

@jeremejazz
Created March 28, 2019 08:07
Show Gist options
  • Save jeremejazz/74fa5876c9812bd74e8bdb4ff780ca28 to your computer and use it in GitHub Desktop.
Save jeremejazz/74fa5876c9812bd74e8bdb4ff780ca28 to your computer and use it in GitHub Desktop.
$.each($("#orders_modal input, #orders_modal textarea, #orders_modal select"), function (index, value) {
if($(value).attr("required") === undefined){
return;
}else{
if(!$(value).val()){
$(value).addClass("is-invalid")
}else{
$(value).removeClass("is-invalid")
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment