0
var itens: "101|102|103|104";
var quebra = itens.split("|");
for (var i = quebra.length - 1; i >= 0; i--) {
var unidade = quebra[i];
$("#lista").append("<p>" +getValue(unidade, jsonTitles)+"</p>");
}
the result of this is as follows: 104 103 102 101
would need it to be 101 102 103 104
both worked... thanks Aerte
– Ezequiel Tavares
Sort, the array object has several interesting methods. ;)
– Laerte