I\'m wondering how it\'s possible to \'translate\' characters in UTF-8 to the closest ASCII equivalent using Javascript, just like Iconv doest in PHP.
Example:
ü
There is now a port of iconv to JS: https://www.npmjs.com/package/iconv
var iconv = new Iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE'); iconv.convert('ça va が'); // "ca va "