Right, as this is a bit of an odd one I'll give some background information:
We have a system whereby a user clicks links, and it activates some jQuery to change the contents of a div, whilest using return false; to supress the href. For non-JS users, we use PHP $_GET to accomplish the same thing (the links return true).
However, we want JS users to be able to perma-link to the page with the link they clicked (so the PHP $_GET is provided) without either a box somewhere on the page with a URL in, or reloading the page.
So, my question: is it possible to change the displayed URL and not reload the page? And if so, how would I go about doing it?