Tengo el siguiente script:
Código HTML:
var nextinput = 0;
function AgregarCampos(){
nextinput++;
campo = '<id="campo'+nextinput+'"><input type="text" size="60" id="campo' + nextinput + '" name="imagenes' + nextinput + '"> <input type="checkbox"><br>';
$("#campos").append(campo);
}
Saludos y Gracias !!


