if I am using backbone with pushstate, how should I format my links ?
currently I am doing like this.
<a href="task/create">create task</a>
if I use above format, It actually send get request to server, which serves standard page and backbone correctly identify that it should go to task/create which it goes and show the view.
but why it is sending get request in first place ? ( even when I have set pushstate to true ? )
edit: I am using chrome latest version. so, browser is not a problem, I think.