+ 1
How to make http-equiv work in sololearn?
I want to reload the page every second. I am trying to use <meta http-equiv="refresh" content="1">. The same code works in browser but not in sololearn app. How do I achieve it?
8 Respostas
+ 1
It refreshes your HTML page every second. You can try same in browser.
+ 1
Yes Jakub , but I am wondering if any work-around is der to make the code work.
+ 1
yes there are solutions for sure :D
0
what it does?
0
maybe thats the reason it doesnt work on sololearn as codes are not directly on your browser but sololearns editor.
0
in my opinion this shouldn't work but maybe try other online editors to see if it works there. I could try to find diffrent solution to refresh it, but when i get home 😂
0
what if u put the refresh in javascript and just make a loop to execute the code evry second?
0
example with form
<FORM>
<INPUT TYPE="button" onClick="history.go(0)" VALUE="Refresh">
</FORM>
check this link
http://mobile.htmlgoodies.com/tutorials/getting_started/article.php/3479551