Re: [Wikitech-l] What is JSON (in JavaScript code)?

2020-10-30 Thread Strainu
Thanks Dan and Roy, apparently our TW was overriding JSON for some reason. Fixed it. Strainu În vin., 30 oct. 2020 la 17:20, Roy Smith a scris: > > JSON is Java Script Object Notation. It's a way of encoding structured data > as text strings which originated (as in name implies) in javascript,

Re: [Wikitech-l] What is JSON (in JavaScript code)?

2020-10-30 Thread Roy Smith
JSON is Java Script Object Notation. It's a way of encoding structured data as text strings which originated (as in name implies) in javascript, but is now widely used as a data exchange format, with support in nearly every programming language. https://www.w3schools.com/js/js_json.asp

Re: [Wikitech-l] What is JSON (in JavaScript code)?

2020-10-30 Thread Dan Andreescu
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON (supported in most browsers I think, it's just available in the global scope) On Fri, Oct 30, 2020 at 11:06 AM Strainu wrote: > Hi, > > I'm looking at solving the following console warning on ro.wp: > "JQMIGRA

[Wikitech-l] What is JSON (in JavaScript code)?

2020-10-30 Thread Strainu
Hi, I'm looking at solving the following console warning on ro.wp: "JQMIGRATE: jQuery.parseJSON is deprecated; use JSON.parse" which appears due to outdated Twinkle code. Just making the replacement does not work, since JSON is not defined. As a matter of fact, I cannot find it anywhere else in th