(llamemos facturación, en verdad es para registrar ventas)
me está reventando la cabeza =P ahi va el código.
Código PHP:
<script type="text/javascript">
function cargarItem(codigo){
$.ajax({
type: "GET",
url: "factura_proceso.php",
data: "producto="+codigo,
success: function(msg){
if(msg != ""){
$("#x_item_lista").html(msg);
}
}
});
}
</script>
Código HTML:
<input type="text" id="x_pr_codigo" onblur="cargarItem(this.value)" /> <table> <tr> <td > Código </td> <td > Nombre </td> <td > Precio </td> </tr> <tr id="x_item_lista"> </tr> </table>
Pero esto me lo trae al tr con id=x_item_lista
mi duda gigante...es , que hago si luego de ese item, kiero agregar un item nuevo dentro de la misma factura.
porque si cambio el valor del input con id=x_pr_codigo me cambia el producto q ya buscó..por uno con el código recientemente escrito.