Forum Moderators: open
<meta http-equiv="refresh" content="0;URL=http://sitename.com/page.pvx?;products">
When it refreshes, it cuts the URL off at the semicolon.
I need to know how to tell it to unescape that somehow.
The html escape character leads to the same problem, since html escape characters end with a semi-colon.
I have also tried both the escape (shown) and unescape versions like so to no avail:
document.write(escape("<meta http-equiv=refresh content=0;URL=http://mysitename.com/iwwida.pvx?;products>"))
If Javascript is an option, you could do document.location = 'http://...' instead of the messing with the refresh header. You can set it up with a window.setTimeout() if you need a delay.
I also happened upon this little monster earlier today. It's awful but does actually seem to work:
<meta http-equiv="refresh" content="0;URL=javascript:window.open('http://example.com/page.pvx?'+unescape('%3b')+'products','_top');">