I'm trying to make a call Ajax
once the page loads and one every 2 minutes.
The 1st and 2nd works but do not have 3rd call and so on.
<script type="text/javascript">
function CarregarJSON() {
$.ajax({
type: "get",
url: "/Extranet/Monitor/DadosServerIISJson",
success: function (data) {
CPUIIS = data.CPU_IIS;
$("#CPUIIS").html(CPUIIS);
//remoção de código para facilitar visualização
}
});
$.ajax({
type: "get",
url: "/Extranet/Monitor/DadosServerSQLJson",
success: function (data) {
//remoção de código para facilitar visualização
}
});
}
$(document).ready(function () {
CarregarJSON();
timeout = setTimeout(function () {
CarregarJSON()
}, 12000);
})
</script>