HTML-Advisor
Mostly practical advices

Category ‘JSON’ Archive

What is JSON?

Sunday, July 29th, 2007

JSON , which stands for “JavaScript Object Notation”, is a lightweight data-interchange format that is easy for humans to read and write, and for machines to parse and generate. JSON is based on the Object Notation of the JavaScript language. However, it does not require JavaScript to read or write because it is a text [...]

AJAX and JSON Part 2

Monday, June 12th, 2006

Is JSON Fast and Reliable?
JSON produces slightly smaller documents, and JSON is certainly easier to use in JavaScript. XMLHttpRequest parses XML documents for you whereas you have to manually parse JSON, but is parsing JSON slower than parsing XML? I tested the XML parser built into XMLHttpRequest against JSON on these address cards and put [...]

AJAX and JSON Part 1

Sunday, June 11th, 2006

When Microsoft added the ActiveX XMLHTTP object to Internet Explorer’s implementation of JavaScript, the company planted the seed for the revolution in Web applications known as Asynchronous JavaScript and XML, or AJAX. Today, Firefox, Safari, Opera, and other browsers all support what is now known as XMLHttpRequest, making possible sites such as colr.org, backpackit.com, and [...]