html - Stream text file with JavaScript -


let's have text file on website.tld/file.txt. wish display in web page , since file changes every want keep streaming. moreover, streaming must seamless , not wish have refresh flicker.

thanks in advance!

if you're using jquery, quick thing add.

window.setinterval(function(){     $.get('website.tld/file.txt',         function(data){             $('#div-where-stream-goes').html(data);         }     ); },1000); 

this run once every second, me little much. run every 5 seconds , wouldn't make of difference user, , less work on browser. change 1000 5000. don't idea of using .txt file data from, whatever floats boat.


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -