I have a map in my java sevlet and converting it to a json format that works right.
When I do this function below it creates a drop down, but it puts every character
That work fine in Ajax call back to update select from JSON object
function UpdateList() { var lsUrl = '@Url.Action("Action", "Controller")'; $.get(lsUrl, function (opdata) { $.each(opdata, function (key, value) { $('#myselect').append('' + value + ''); }); }); }