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();