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.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

ok got it answered from here. https://github.com/documentcloud/backbone/issues/456

clicking links are not suppose to be pushstate friendly. one may try to live bind it via jquery and use custom function to create that effect.

link|improve this answer
Even if you were only using 'hashchange', it's probably not a good idea to rely on links in order to future-proof your app. – JohnnyO Sep 4 '11 at 6:13
1  
Actually, future-proofing is exactly what you would be doing by using links. If your backbone routes match your application routes, then the links will work even if JavaScript is turned off, or if you are crawled by a search engine. – Scott Greenfield Nov 19 '11 at 7:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.