I am pulling in some information from a database that contains dimensions with both \' and \" to denote feet and inches. Those characters being in my string cause me proble
mystring = mystring.replace(/["']/g, "");