In this example - http://jsfiddle.net/k9tPA/2/ - I have two divs where I've set contenteditable=true. This works fine - you can click in either box to bring the focus there, enter new text, double-click to select text, etc. But if you uncomment the line (shown below) that makes Box 1 draggable, Box 1 is no longer editable:
$(document).ready(function(){
// $('#Box1').draggable();
})
What's going on here? Thanks