Agradezco la ayuda
Código Javascript:
Ver original
<script type='text/javascript'>//<![CDATA[ window.onload=function(){ $.fn.delayPasteKeyUp = function(fn, ms) { var timer = 0; $(this).on("propertychange input", function() { clearTimeout(timer); timer = setTimeout(fn, ms); }); }; //la utilizamos $(document).ready(function() { $("#ingreso").delayPasteKeyUp(function(){ $("#respuesta").append('Producto: <?php $codigom = "'+ $('#ingreso').val() +'"; mysql_select_db($database_noticias, $noticias); echo $query_productos = "SELECT * FROM productos WHERE codigo=$codigom"; $productos = mysql_query($query_productos, $noticias) or die(mysql_error()); $row_productos = mysql_fetch_assoc($productos); $totalRows_productos = mysql_num_rows($productos); $kol = $row_productos['producto']; echo $kol; ?>