Reputation: 1236
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&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
Upvotes: 3
Views: 2626
Reputation: 6825
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&random=OP6JWUAT7A#zone-alldata"/>
Upvotes: 9