It should be easy, but through all the research that I have done online, I just canβt find a solution!
I currently have a sortable list using .sortable, and then a double-click .bind event, with a binding event, as follows:
$("#controlContainer").sortable({ blah blah }) .bind('dblclick', function(event) { alert($(event.eventData).attr('id')); });
My problem is that the above does not work, I need to get the identifier of which item was double clicked, but cannot find a way to access it.
Anyone with any solution? It would be very grateful.
source share