Off The Gold
Off The Gold

Reputation: 1236

HTML5 error on page meta refresh with random value (forces refresh)

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

Upvotes: 3

Views: 2626

Answers (1)

Shawn Steward
Shawn Steward

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&amp;random=OP6JWUAT7A#zone-alldata"/>

Upvotes: 9

Related Questions