So, here\'s the deal: I have a JSON object saved in my web App at localStorage. This JSON is being saved as a string, with JSON.stringify, inside one of my function
JSON.stringify
$.ajax({ url:'test.html', type:'POST', data: 'q=' + str, dataType: 'json', success: function( json ) { $.each(json, function(i, value) { $('#myselect').append($('').text(value).attr('value', value)); }); } });