I'm using jQuery Sortable with jHTMLArea. I basically have DIVs that are sortable and the DIVs are sortable. However, when you drop the DIV on any location, the contents of the jHTMLArea become empty and jHTMLArea becomes disabled. The iFrame and textarea both get disabled. You cannot write anything inside of it.
I'm not sure what the issue, so I'm wondering if this is has to do with the libaries themselves.
The code I'm using is this:
// Enable Sortables
$("div.nnUtil").sortable({
cancel: ".nnSettings",
connectWith: 'div.nnUtil',
distance: 5,
forcePlaceholderSize: true,
items: '> div.nnItems',
placeholder: 'ui-state-highlight',
revert: 250
});