I use backbone.js, this code is works fine all modern browser except internet explorer.
var posts = postList.map(function(model){ return model.toJSON(); });
Something wrong with the toJSON() method, what can I do?
Edit:
var posts = postList.map(function(model){ return model });
without toJSON(), still not working, maybe the .map method is the guilty?
I found the solution :