Backbone.js PushStates: Fallback for Internet Explorer not working
My site has just implemented pushstates in Backbone.js and the entire site breaks for IE. How should I create a fallback for IE? What I am trying to achieve Main URL: http://mydomain.com/explore Another URL: 'http://mydomain.com/explore/1234 The main page of the site is http://mydomain.com/explore which triggers the router function explore . When a user visits http://mydomain.com/explore/1234 , Backbone's router will trigger the function viewListing , which is the same as function explore , but also includes details for item id 1234 . Backbone.js Router // Router var AppRouter = Backbone