There is a form with 10 elements, there the types of the inputs are all different, and here’s how I can’t figure out how to select all the input types except the file and submit types.
var cntInp = $('form#lala').find('input[type!="file"]').length; console.log(cntInp )// Выводит все инпуты с типами кроме file. And how to add to the condition, what else would the throw with input type be?