I run a few problems, in my application I want to reload the page instead of hash addresses when used in IE by default. It seems possible to use the hashChange parameter and set it to false.
However, since the router does not load at all in IE, we would still like the trunk router to load the initial route associated with the loaded URL.
Backbone.history.start({pushState: true, hashChange: false});
In any case, what to do?
source share