js replace single quote with doubel quote
//Removing all the single quotes from a string.
var outputstr= inputstring. replace(/'/g,'');
//Replacing all the single quotes with double quote in a string.
var outputstr= inputstring.replace(/'/g,'"');