I'm currently having some problems with a hashchange and jQuery mobile conflict, so I'm looking to change the url manually and handle the request myself.
Slight problem though, I'm currently using:
$('#test').click(function() {
window.location = "/test/#hash";
});
Which successfully changes the url as I want it to, but then attempts to load the requested url, I merely want to change the url and NOT prompt a page load. Is this at all possible? Any suggestions would be greatly appreciated!