Js_Form_Inputs

PHOTO EMBED

Fri Jun 21 2024 05:25:13 GMT+0000 (Coordinated Universal Time)

Saved by @gagan_darklion #javascript

let allTextInputs = postForm[0].querySelectorAll('input:not([type="radio"]):not([type="checkbox"])');

let allRadioInputs = postForm[0].querySelectorAll('input:not([type="text"]):not([type="checkbox"])');

let allCheckBoxInputs = postForm[0].querySelectorAll('input:not([type="text"]):not([type="radio"])');

let allSelectTags = postForm[0].querySelectorAll('select[required]');

console.log(allTextInputs, allCheckBoxInputs, allRadioInputs, allSelectTags);
content_copyCOPY

To fetch all JavaScript Inputs, Select tag and vice versa