You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 29, 2024. It is now read-only.
What steps will reproduce the problem? 1. $.toJSON([[{"a":"1"},{"b":"2"}],([[{"a":"1"},{"b":"2"}]]) will produce a string : [{"0":[{"a":"1"},{"b":"2"}]},{"1",{"0":[{"a":"1"},{"b":"2"}]}] 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? jquery.json.2.3 on win7 ie9 Please provide any additional information below. I work around this problem by change line 98 from
if(o.constructor === Array)
to
if($.isArray(0))