HTML archive help...
Hello,
I'm trying to make, within a HTML archive activity, a page that will automatically redirect to another page after X number of seconds.
This is the code I'm using on that page:
<head> <meta name="viewport" content="width=device-width, user-scalable=no target-densitydpi=device-dpi"/></head><body bgcolor="#000000" text="#FFFFFF">
<META HTTP-EQUIV="REFRESH" CONTENT="3 URL=blahblah.html">
This should redirect to "blahblah.html" after 3 seconds. And does so in the plain html file when previewed on my computer. However once it's been built in the app, the page just stays where it is. It never redirects.
Can anyone help me out? Have I done something wrong/is there a workaround?
Cheers.
I'm trying to make, within a HTML archive activity, a page that will automatically redirect to another page after X number of seconds.
This is the code I'm using on that page:
<head> <meta name="viewport" content="width=device-width, user-scalable=no target-densitydpi=device-dpi"/></head><body bgcolor="#000000" text="#FFFFFF">
<META HTTP-EQUIV="REFRESH" CONTENT="3 URL=blahblah.html">
This should redirect to "blahblah.html" after 3 seconds. And does so in the plain html file when previewed on my computer. However once it's been built in the app, the page just stays where it is. It never redirects.
Can anyone help me out? Have I done something wrong/is there a workaround?
Cheers.
Comments
Thank you!
<META HTTP-EQUIV="REFRESH" CONTENT="3; URL=blahblah.html">
The key item was the ";" character after the '3'.
Sorry it took so long to figure that out, but I hope it helps anyone else encountering this issue.
Darryl