I have an array of chars that I would like to do a find and replace with jquery . The array is:
var f = ['“','â€','‘'','’','…','—','–'];
var r = ['"','"',"'","'","...","-","-"];
I have tried a few different ideas, but nothing is working. I setup a fiddle to work on it here:
Any suggestions?