Question

In my code I have refresh tag to force a refresh every 60 seconds to show the new data pulled from the database. But since converting to HTML 5 I get the following error. Any idea how to fix this?

<meta http-equiv="refresh" content="60;url=ttheview.jsp?zone=alldata&amp;random=OP6JWUAT7A#zone-alldata"/>

Error: Bad value 60;url=thepageview.jsp?zone=alldata&random=OP6JWUAT7A#zone-alldata for attribute content on element meta: Expected a space character, but saw u instead.

Thanks a bunch

Was it helpful?

Solution

Expected a space character, but saw u instead.

Did you try adding a space before url?

<meta http-equiv="refresh" content="60; url=ttheview.jsp?zone=alldata&amp;random=OP6JWUAT7A#zone-alldata"/>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top