I try to autoload my page every 20 seconds. I use JavaScript for this, not for <meta>.
I have <body onload = "SetTimer ()"> and here is my JavaScript function
function SetTimer(){ setTimeout('window.location.replace(window.location.pathname)', 20000) }
Now my problem is that I also pass the parameter in the query line when the first page loads. But when the page is redefined again ( window.location.pathname does not include the parameter), so I cannot assign labels to the page that are based on the parameters passed.
source share