Is there an easy way (without listing them all separately) in jquery to select all form elements and only form elements.
I can't use children() etc because the form contains other HTML.
E.g:
$("form").each(function(){
let $inputs = $("input, textarea, select", this);
});