24 lines
412 B
JavaScript
24 lines
412 B
JavaScript
function ModalLoad(idmodal,title,path) {
|
|
$("#"+idmodal+" .modal-header h4").text(title);
|
|
$("#"+idmodal+" #framemodal").attr("src",path);
|
|
}
|
|
|
|
$(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();
|
|
}
|
|
});
|
|
|
|
});
|
|
});
|