backbone.js - Backbone Push State In All Browsers -
i'm trying use "push state" routing (i.e. /about instead of #about) in browsers (even old ie). nothing make me happier if old ie users experiencing page reload on every click , routing setup such loading page first time setup correct 'state'.
any ideas on how set up? i've tried obvious of setting pushstate: true
ie redirecting root , using #about
whenever visiting /about
. thanks!
you should able using backbone.history.start({pushstate: true, hashchange: false}).
Comments
Post a Comment