ninecompta/public/lib/app/app.js

24 lines
412 B
JavaScript
Raw Normal View History

2024-12-06 08:09:07 +01:00
function ModalLoad(idmodal,title,path) {
$("#"+idmodal+" .modal-header h4").text(title);
$("#"+idmodal+" #framemodal").attr("src",path);
}
2024-12-24 17:29:37 +01:00
$(document).ready(function(){
$("#selectcompany").on("change", function() {
url=$(this).data("change");
$.ajax({
type: "POST",
url: url,
data: {
id: $(this).val()
},
success: function (result) {
location.reload();
}
});
});
});