I have input text that contains a ' like in this text "Frank's Reel Movie Reviews"
how do I get rid of the '
I have tried
.replace (/\'/ig, '');
.replace ('\'', '');
But it seem like the ' does now want to be deleted...
I am thinking that the ' maybe encoded utf-8 or something
Any ideas