I have a list which can be sortable. I\'m using jQuery UI with widget, mouse, position, sortable addons.
CSS:
#sortable{
width : 550px;
displ
If would like to prevent text selection but continue to use inputs at the same time, you should try this
$('body *').not(':has(input)').not('input').disableSelection();
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.
This happens because you have $("#sortable").disableSelection();
. Remove it and will work ok.
http://jsfiddle.net/KbBnu/1/