Hello
I have a problem with an XHTML page, with regards to validation according to w3c.
The problem is that my javascript function tries to call:
document.location = "?process=1&sort=name&latest=true"
Which works fine, but according to w3c, the ampersand characters need to be encoded as & i.e.:
document.location = "?process=1&sort=name&latest=true"
However, this doesn't work, since the browser does not unencode html entities in a javascript block!
arg! Apart from sticking the javascript file in a separate .
js file so that w3c don't validate the contents, how can I get around this?
holdmykidney