Skip to content Skip to sidebar Skip to footer

Backbone.js Router Doesn't Work On IE6

When I use the Router in Backbone.js, IE6 throw a Permission Denied on the following line: if (this.iframe && (frag != this.getFragment(this.iframe.location.hash))) the Ba

Solution 1:

As far as I know backbone.js does not claim to support IE6


Solution 2:

The Backbone.js router does work in IE6, but it uses hash fragment routing (http://domain/#route) instead of HTML5 history push state routing (http://domain/route)


Post a Comment for "Backbone.js Router Doesn't Work On IE6"