I have Problems with editing and deleting selected entries. i think it lies that i get only one index.
How i select things:
$("#liste").click(function selectList (event) {
var target = $( event.target );
if ( target.is( "li" ) ) {
target.toggleClass('selected');
}
});
The Problem is here:
$('.selected').attr("index");
I only get the first Index from the selected Item, but i want to have all the indexes for every selected item. For Questionslook at this I have a Special Idea about an Edit function or feel free to ask!