lo he soluciona pero a media ya que solo un input valida y muestra la alerta lo estoy haciendo con jquery y jquery.validate y como hacer para que me valide los que el usuario utilize siempre y cuando este no deje campos vacios
Código HTML:
Ver original<form id="myform" name="myForm" action="" method="POST">
<div class="input_fields_wrap1"> <input class="add_field_button1" type="button" value="+ Agregar" />
Código Javascript
:
Ver original$(document).ready(function() {
var max_fields = Infinity; //maximum input boxes allowed
var wrapper1 = $(".input_fields_wrap1");
var add_button1 = $(".add_field_button1"); //Add button
var x = 1; //initlal text box count
$(add_button1).click(function(e){ //on add input button click
e.preventDefault();
if(x < max_fields){ //max input box allowed
x++; //text box increment
$(wrapper1).append('<div>Producto <input type="text" name="Producto[]"/> Precio <input type="text" name="Precio[]"/> Cantidad <input type="text" name="Cantidad[]"/><a href="#" class="remove_field">Quitar</a></div>'); //add input box
}
});
$(wrapper1).on("click",".remove_field", function(e){ //user click on remove text
e.preventDefault(); $(this).parent('div').remove(); x--;
})
$('#myform').validate({
rules: {
"Producto[]": {
required: true,
},
"Precio[]": {
required: true,
},
"Cantidad[]": {
required: true,
},
}
});
});