I\'m developping a web app with CodeIgniter on back-end and Backbone.js on front-end. I\'m also using HTML5 Boilerplate as my start template.
I\'m using Backbone\'s
The solution that I found to work was to use Ben Alman's hashchange plugin. Go to the start function in Backbone.History and replace the code of the start function with this.
start : function() {
$(window).hashchange(this.checkUrl);
return this.loadUrl();
}
And be sure to include the hashchange plugin file in your code.