I'm new to backbone.js and like the idea of structuring javascript. However, i've read it relies on hashbangs which Twitter is trying to eradicate.

So my question is should I not use backbone.js due to this?

link|improve this question

No. Use it. It's great. – Jed Feb 21 at 3:03
thanks Jed, what do you like about it best? – tim peterson Feb 21 at 3:50
feedback

1 Answer

up vote 3 down vote accepted

Backbone actually just uses a hash and not a hashbang. However if you enable pushState than on modern browsers (pretty much anything other than IE) there will be no hash at all.

link|improve this answer
thanks Abraham, is enabling pushState a built-in option on backbone.js? can you explain a little further? i'm just a little confused because the browser is what "enables" pushState not you or I, just fyi, i am using jquery.pjax(),github.com/defunkt/jquery-pjax, for pushState in capable browsers – tim peterson Feb 21 at 13:16
By "enable pushState" I mean enable backbone's use of pushState when the browser supports it. – abraham Feb 21 at 13:37
ok great thanks! – tim peterson Feb 21 at 14:15
feedback

Your Answer

 
or
required, but never shown

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