Files
inventario_material/public_html/sitio/admin/js/gastos.js
T

18 lines
331 B
JavaScript

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