While loading content from different sources on the same web server (using jQuery's load function), GIF animations and input fields get stuck.
<script>
$(document).ready(function(){
$("#wunschbox").load('addons/wunschbox.php')
setInterval(function(){
$("#wunschbox").load('addons/wunschbox.php')
}, 4000);
});
</script>
I think the client (browser) gets in trouble because of the mass of load requests. On my old Laptop the problem is more intense than my desktop pc.
Do you have any ideas, how to solve this?
Is there a more performant way to handle it?