I know how to replace single character in string, but what if i want to replace multiple characters?
var replaceMe = "Přemysl Oráč Šestý";
$("body").append( replaceMe );
For example:
- ě = e;
- č = c;
- ď = d;
- ř = r;
and so on. In my case Přemysl Oráč Šestý should be Premysl Orac Sesty
How to do that if I have multiple characters?
Here is my codepen http://codepen.io/anon/pen/RaXvjo?editors=0010