+ 1
How can I make a webpage automatically refresh itself as I'm writing script?
I'm using the Atom text editor. Thanks.
4 Réponses
+ 4
Using Live Server is best
https://atom.io/packages/atom-live-server
+ 4
Yaa Qudusayo is right but where ....
You can use live server on visual studio code☺☺
+ 2
Just Search for Live Server in the extensions and install it on visual studio code Abhay pratap Singh
+ 1
I can't get it working in sololearn but check out this code I found that might help you -
You can write a simple java script code that keeps refreshing your page
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload();",timeoutPeriod);
}
window.onload = timedRefresh(5000);