By executing the code below, the page loads fine with the functions dayofweek and hourofday. But shortly after the browser (Chrome) freezes and throws an error: net :: ERR_INSUFFICIENT_RESOURCES and references the jQuery library and my hourofday.js script.
After a few minutes, he begins to get errors like crazy, and he freezes. I canβt even reload the page.
function dayofweek(){ $.ajax({ url: "dayofweek.php", type: "POST", dataType: "xml", success: function (xml){ var day = $(xml).find('day').first().text(); $("#dayofweek").html(day); }, error: function (xhr, status) { }, complete: function (xhr, status) { } }); } function hourofday(){ $.ajax({ url: "hourofday.php", type: "POST", dataType: "xml", success: function (xml){ var response = $(xml).find('response').first().text(); $("#hourofday").html(response); }, error: function (xhr, status) { }, complete: function (xhr, status) { } }); setInterval(dayofweek, 6000); setInterval(hourofday, 6000); }
source share