//jquery selector input by type
$(":text") // all imput type text
$(":password") // all input type password
//more
https://www.w3schools.com/jquery/jquery_ref_selectors.asp
$("input[type=checkbox]");
$("input[type=text]");
$("input[type=number]");
$("input[type=checkbox]");