I want to use hashes in my urls. when i use the code below, the url goes to kart/:nid but not #kart/:nid as i want it to. I have not enabled pushState:true in my code so that should not be the problem.
Backbone.history.navigate('#kart' + "/" + this.model.get("nid"), { trigger: true});
When i remove the wildcard from the function, the url keeps the hash going to "#kart".
Why is the wildcard messing up this?
Appreciate any help!