jQuery parseJSON() takes a well formed JSON string and then returns the resulting JavaScript value.
Prior to jQuery 1.9 version, $.parseJSON returned null value rather than throwing an error if this was passed an empty string, null, or undefined, even though those are not valid JSON.
Here are some basic things about JSON:
var obj = jQuery.parseJSON( ‘{ “name”: “John Doe” }’ ); console.log(obj.name);
Note that JSON syntax is stricter than JavaScript object syntax. JSON insists that the property names be quoted with double quote characters and of course values can only be numbers, strings, booleans, or null.
So, the below code is a wrong format:
var str = “{ ‘name’: ‘John Doe’ }”;
var obj = jQuery.parseJSON( str );
Read more from jQuery reference.
In today’s fast-paced and highly competitive marketing environment, even the most creative campaign is only…
We are NYC moving firm. Are you planning a flat move? Maybe a distance or…
Mobile devices, unlike desktops and laptops, can not be handled by dozens or hundreds of…
Augmented Reality- An immersive experience for the learners! Learning and education aren’t the same as…
On special days like birthdays and weddings, we all like to celebrate our loved ones…
A web application is different from a regular mobile or desktop application as it runs…