Re: [jquery-dev] native JSON in 1.4 will be needing an IE8 workaround...

2010-01-06 Thread John Resig
How are you hitting this issue in jQuery? jQuery never uses JSON.stringify, only JSON.parse. We don't really like overwriting native methods - especially ones that we don't use - to fix bugs. --John On Wed, Jan 6, 2010 at 12:46 AM, Leeoniya wrote: > for some reason my github commit comments a

[jquery-dev] native JSON in 1.4 will be needing an IE8 workaround...

2010-01-05 Thread Leeoniya
for some reason my github commit comments are not showing up except in the RSS feed...so re-posting here. Comment in ff3645e: i've run into a known IE8 issue in the past with its native parser's inability to serialize empty values of DOM elements. details here: http://tinyurl.com/m2j294 just a

[jquery-dev] Native JSON

2009-02-16 Thread ajpiano
With the advent of native JSON support in browsers forthcoming, should jQuery.support check for the existence of the JSON obj and use it as the preferred way of parsing JSON whenever the library needs to do so? This would have the added benefit of leveraging json2.js for users who already have th