I am retrieving data from a database, where the field contains a String with HTML data. I want to replace all of the double quotes such that it can be used for parseJS
parseJS
This is to remove double quotes in a string.
str1 = str.replace(/"/g, ""); alert(str1);