Reputation: 1311
I have tried to work out with jquery ui selectable but it is not working as expected. when i selecting list items the inner items are also selecting and i need add a class to selected items. here is the demo of my stuff.
$(".itemlist").selectable();
Upvotes: 2
Views: 245
Reputation: 3518
Replace the below code in your javascript:
$(".itemlist").selectable({ filter: "li" });
Hope it helps.
Upvotes: 1