How to replace all diacritic chars from string in JavaScript:
Example of use:
1 2 3 4 5 6 7 |
// string with diacritic chars var test = "ąćńółęæ"; // string without diacritic chars var test_new = test.removeDiacritics(); |
Code for removing diacritic chars from string: Continue reading Replace all diacritic chars from string in JavaScript