Posts by Wanderson César • 21 points
1 post
-
2
votes1
answer1263
viewsA: How to update a div every x seconds?
Make an ajax call every x seconds and run your code to update the div. var time = 1000; // 1s setTimeout(function(){ // Seu código }, time);…