Files
inventario_material/public_html/sitio/admin/js/totales.js
T
2019-06-17 15:10:22 -05:00

18 lines
333 B
JavaScript

$(muestra_total());
function muestra_total(consulta){
$.ajax({
url: 'totales.php',
dataType: 'html',
data: {consulta: consulta},
})
.done(function (respuesta) {
$('#totales').html(respuesta);
})
.fail(function () {
console.log("error");
})
}