入力フィールドに必須の属性があるかどうかを確認したいと考えています。これらのフィールドに空の値があり、必要な属性もある場合は、各フィールドの後にエラー div を追加します。セレクターの使い方に少し戸惑いました
// initialize validator for a bunch of input fields
var inputs = $("#Contact :input")
// Check all required fields
if (inputs.attr("required") && inputs.val() === "") {
var invalidFields = Select all fields that have the attribute required and an empty value, and assign them a class
alert("Required Fields not completed");
}