I am using one input select where i have to bind json data to this control.
Below is the input select used:
<select id="ms" multiple="multiple" name="selector">
</select>
$(document).ready(function () {
$('#ms').multipleSelect({
width: '100%'
});
BindCategory();
});
function BindCategory()
{
$.ajax({
url: "/Article/BindCategory",
type: "GET",
contentType: 'application/json; charset=utf-8',
success: function (response) {
var sel = $('#ms');
$.each(response.Categories, function (i, value) {
j=1;
sel.append('<option value="' + value + '">' + i + '</option>');
j++;
});
},
error: function (er) {
alert(er);
}
});
}
in this bindcategory function i am running one loop to get value one by one and putting in html select control but after complete this process data is not binding in this control.
I added now screen shot of response for your reference in below:

responsearray?