I have 3 types of forms, each with several inputs
$("#formulario1, #formulario2, #formulario3 ").submit(function(e){
e.preventDefault();
var arreglo=[];
$this.each(function () {
arreglo.push($(this).val());
});
but how do I get the inputs
of the form I want to send?