2byte characters in firefox error…
key event that does not occur
url : http://jsfiddle.net/jqwidgets/Nbmbx/
script
———————————————————————————
var countries = new Array(“Afghanistan”, “Albania”, “금액1”, “금액2”);
$(“#input”).jqxInput({
placeHolder: “Enter a Country”,
height: 25,
width: 200,
minLength: 1,
source: countries,
theme: ‘energyblue’
});
$(‘#input’).on(‘change’,
function () {
$(“#log”).html(“Bind to the change event”);
});
———————————————————————————