When reading option from select i get %E2%80%8B before the select text
ver: 24.0
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
ver: 24.0
Ram,
Thank you, we'll check.
thx much!
Hello Ram,
Does your Firefox can play local .mp3?
yes it does, same link once remove the %E2%80%8B from it then the mp3 play without any problems.
Hello! Looks like it's ZERO WIDTH SPACE. Try the following code prevar x = Appery("select_voice").find("option:selected").text().replace("\u200B", "");/pre instead prevar x = Appery("select_voice").find("option:selected").text().replace(/[\n\r]/gi, "").trim();/preOne more thing - to prevent these symbols appear instead this line predropDown.append('' + newData + '');/pre try
predropDown.append("" + newData + "");/preAlso this code should be on page Show event instead select Value change
pre$("#" + Appery("select_voice_female").attr("id") +"-listbox-popup").find("div.ui-header").remove();
$("#" + Appery("select_voice").attr("id") +"-listbox-popup").find("div.ui-header").remove();/pre