I’m using the jQuery Address plugin to do some dynamic address changes. So far I’ve got it to change the address bar to my page name but it adds a /#/ at the beginning. I’ve had a look through the documentation but can’t work out how to remove it.
My codes attached to a click event like so:
thisurl = "/portfolio";
$.address.path(thisurl);
Thanks in advance.
I decided to go with history.js to this .
Use
History.pushState("", "Title", newstate);to change the addr bar andHistory.Adapter.bind(window, 'statechange', function () {});For the back and forward button events .