I get Cannot call 'start' of undefined
when calling...
Backbone.history.start()
When running some checks Backbone returns the object but Backbone.history returns undefined.
What could be the cause of this?
Thanks
I get Cannot call 'start' of undefined
when calling...
Backbone.history.start()
When running some checks Backbone returns the object but Backbone.history returns undefined.
What could be the cause of this?
Thanks
Also using old versions of jquery could cause this
A similar error message ".. has no method 'start'" pops up if you write
Backbone.History.start
instead ofBackbone.history.start
(the correct one is with lowercaseh
inhistory
).