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.
You can simple try String(); to remove the quotes.
Refer the first example here: https://www.w3schools.com/jsref/jsref_string.asp
Thank me later.
PS: TO MODs: don't mistaken me for digging the dead old question. I faced this issue today and I came across this post while searching for the answer and I'm just posting the answer.