すべてのフォーム要素で.each()ループを実行しています。入力タイプ(チェックボックス、テキスト、選択、テキストエリアなど)を判別する方法が見つかりません。
何か案は?
// When submitting
$("input[name='event_form_submit']").click(function() {
$("form[name='tepg_form_processor'] :input").each(function() {
console.log($(this).attr("type"));
// Determine whether this is a select, input etc?
});
return false;
});