I need to make multiple selection available by default, so the user doesn't have to hold ctrl. Would appreciate some help with this, thanks.
$("#selectable").selectable();
$("#selectable").on("selectablestart", function (event, ui) {
event.originalEvent.ctrlKey = true;
});