I use JQuery to get Json data, but the data it display has double quotes. It there a function to remove it?
$(\'div#ListingData\').text(JSON.stringify(data.
Use replace:
var test = "\"House\""; console.log(test); console.log(test.replace(/\"/g, "")); // "House" // House
Note the g on the end means "global" (replace all).
g