How can I not take elements with a certain id on jqery \ js
eg
var $inputs = $('input:not([type="hidden"]),select,textarea'); those. hidden fields are not taken into account but you can write something like
var $inputs = $('input:not([type="hidden"],[id="ware"]),select,textarea');
type="hidden"withid="ware"- BOPOHvar $inputs = $('input:not([type="hidden"]),input:not([id="ware"]),select,textarea');- BOPOHidon the page must be present in a single form. In general, something like this: jsfiddle - Alexander Igorevich