Хорошо, поэтому я пытаюсь интегрировать плагин jQuery UI по выбору (сетка), и мне нравится, как он отправляет выбранные индексы обратно. Вот что я хотел бы сделать:
$(function() {
$( "#selectable" ).selectable({
stop: function() {
var result = $( "#select-result" ).empty();
$( ".ui-selected").each(function() {
var index = $( "#selectable li" ).attr('id');
// But I want the ids of all the selected elements,
// but the id of the first is just getting copied on my site!
result.append( "#" + ( index + 1 ) );
});
}
});
});