Dear Appery,
when using the following code:
code
var voiceName = Appery("select_voice").find("option:selected").text();
alert(voiceName);
var url = "http://xxx.yyy.s3.amazonaws.com/voice/" + voiceName ;
/code
in the alert i get the selected text as it should be, however when i use the variant voiceName as part of a link i get:
code
http://xxx.yyy.s3.amazonaws.com/voice/%E2%80%8BDave
/code
i tried to remove it using:
code
var n = url.replace("%E2%80%8B", "");
/code
but that didnt help too....
Any thoughts will be highly appreciated!!
Best,
R.