How do I make my list update in real time with jquery but without loads of request?
function startInterval() {
    checkInt = setInterval(function() {
        $("#queueOrderList").load("updateQueueList.php function() {
            console.log("Load was performed");
        });
    }, 100)
}
This is my code and it makes 10 requests per second.
