0

Possible Duplicate:
Browser-native JSON support (window.JSON)

Recent browsers such as Chrome, and Firefox all have native implementations of the json.js JSON object. However what about Opera, Safari, Safri, Mobile, Android Stock, Android Dolphin, and the various versions of IE?

I've been looking online to find a support chart and for the life of me I can't. I'm writing a tutorial demo and really need json serialization only for the demo itself, I'd really rather not include anything that is orthogonal to the feature itself.

Community
  • 1
  • 1
George Mauer
  • 117,483
  • 131
  • 382
  • 612

2 Answers2

2

If I remember correctly, it was all webkit browsers, Firefox 3.5+, IE8+, and Opera 10.5+. Android and safari all use webkit.

tr4656
  • 1,298
  • 9
  • 16
0

I can see most of the browsers listed are found in mobile devices(Unsupported ones).Most mobile browser don't support javascript 100% unless you do it in a good way. Why don't you try sencha plattform.It is built using EXT JS. and they have tried to factor in the small browsers/new browser compatibility.

Cheruiyot Felix
  • 1,557
  • 5
  • 26
  • 42
  • Because I'm not trying to demo sencha platform, or ext js, I'm trying to demo my own plugin and every dependency that I introduce on the demo page will be increasing the complexity for consumers. Think about it. When you look at a product demo - you just want to see what it takes to make it work, not a bunch of extra code that's unrelated. – George Mauer Oct 23 '11 at 15:46