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

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -