I am looking for info on the event and ui objects the jQuery selectable events: \"selecting\", and \"start\" take as parameters. I cannot find this in the documentation and
You have to use selected and unselected event which are fired for every selected item in group selection.
var selected = new Array(); $("#selectable").selectable({ selected: function(event, ui){ selected.push(ui.selected.id); }, unselected: function(event, ui){ //ui.unselected.id } });