I\'d like to have a div that is at the same time editable and draggable, using jQuery UI. Content editability seems to work only if draggable is not enabled. Am I missing so
It is working but the jQuery draggable is hijacking click event. You can still tab to it. This is a quick fix.
$('#draggable').draggable().bind('click', function(){ $(this).focus(); })