I have a list which can be sortable. I\'m using jQuery UI with widget, mouse, position, sortable addons.
CSS:
#sortable{ width : 550px; displ
Just do:
$( "#sortable_container_id input").click(function() { $(this).focus(); });
and replace sortable_container_id with the id of the element that is the container of all "sortable" elements.
sortable_container_id