Search code examples
internet-explorerbackbone.js

backbone.js IE support


Which IE browser versions officially supported by backbone.js?

backbonejs.org quote: Backbone's only hard dependency is Underscore.js ( >= 1.8.3). For RESTful persistence and DOM manipulation with Backbone.View, include jQuery ( >= 1.11.0), and json2.js for older Internet Explorer support. (Mimics of the Underscore and jQuery APIs, such as Lodash and Zepto, will also tend to work, with varying degrees of compatibility.) But i need more detailed answer, does IE8 supported?


Solution

  • jQuery browser support starts at IE9 but version 1.12 is still recommended for older browser and Backbone is compatible with jQuery 1.12.

    You can test underscore and Backbone with their extensive unit tests on the target browsers.

    See How cross browser is backbone.js? for additional information.