Hi All!
This is my json:
{"event": {
"items": [
{"position": "2", "name": "John Doe 1"},
{"position" : "1", "name": "John Doe 2"},
{"position": "3", "name": "John Does 3"}
]
}
$.each(data.event.items, function(val) {
$('#list').append('<li>'+data.event.items[val].name+'</li>');
});
Right now the order is: John Doe 1, John Doe 2, John Doe 3. I want to loop them and display them in order of the position that is has been given. So the
correct order would be John Doe 2, John Doe 1, John Doe 3.
How can I achieve that?
Thanks in advance!
Can you answer this question?
Write Answer2 Answers