I am using jQuery UI Selectable plugin. I want to select one item at a time. But jQuery UI Selectable plugin allows multiple selection by clicking/ dragging / holding CTRL
This might be a better solution:
$('#selectable').selectable({ selecting: function (event, ui) { $(event.target).children('.ui-selecting').not(':first').removeClass('ui-selecting'); } });