すべての入力フィールドにhtml5検証を使用して必要なjQueryを自動的に書き込む方法を探していましたが、どこに書き込むかを伝えるのに問題があります。
これを撮りたい
<input type="text" name="first_name" value="" id="freeform_first_name"
maxlength="150">
終了タグの前に自動的に必須を追加します
<input type="text" name="first_name" value="" id="freeform_first_name"
maxlength="150" required>
に沿って何かをすることができると思った
$("input").attr("required", "true");
しかし、それは機能しません。どんな助けでも大歓迎です。
$(function(){....});