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

In my code, I have a refresh tag to force refresh every 60 seconds to show the new data pulled from the database. But after 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 elements metatet: whitespace character expected, but saw u instead.

Thanks a bunch

+3


source to share


1 answer


Expected whitespace, but saw u instead.

Have you tried adding a space before the URL?



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

      

+8


source







All Articles