como podria hacerlo, muchas gracias por la ayuda!
Código Javascript:
Ver original
$(document).ready(function() { $("#ingreso").delayPasteKeyUp(function(){ $.get("item.php", {ingreso: $("#ingreso").val()}) .done(function(respuesta){ if ($('#ingreso').val().length == 10) { $("#respuesta").append('1 '+ respuesta +' <input type="hidden" name="conceptos[]" value="'+ $('#ingreso').val() +'," size="32" /><br>'); } else { $("#respuesta").append('<strong>Intenta de nuevo</strong><br>'); } $("#ingreso").val(""); }); }, 10); }); }//]]>