Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I hit the refresh button in Internet Explorer, my backbone.js application dumps the last JSON output it fetched to the screen. I am not using the router. I know there's a way to disable this but I can't remember. Could someone point me in the right direction?

Edit:

My application already disables cache:

$.ajaxSetup cache: false

Also, I am performing a fetch() after the application initialises which is an anti-pattern according to the backbone docs: http://documentcloud.github.com/backbone/#Collection-fetch

share|improve this question

1 Answer

If you append .html to the url, IE8 will behave correctly. This indicates IE8 somehow does not send the right content type header.

The right approach is to bootstrap all your json collections on the initial page load as recommend on the Backbone.js website http://backbonejs.org/#FAQ-bootstrap

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.