vo1d
vo1d

Reputation: 61

Drag-and-drop into contentEditable DIV in Firefox

I'm stuck with drag-and-drop handling in Firefox.

Look at this example: http://jsfiddle.net/5nqRX/

There are two textareas and two contentEditable divs on a page.

0) If you drag text from the first textarea and drop it to the second one, text if copied. <-- in IE/Chrome it's moved

1) If you drag text from the textarea and drop it to the contentEditable div, nothing happens. <-- in IE/Chrome it's moved

2) If you drag text from the first contantEditable div and drop it to the second one, text completely disappears (removed from the first div, and didn't appear in the secod one) <-- in IE/Chrome it's moved

WTF with default Firefox's drop handling? Or do I miss something?

Upvotes: 5

Views: 1234

Answers (1)

Naman Goel
Naman Goel

Reputation: 1612

It's a known firefox issue. You can't do anything about it.

Upvotes: 1

Related Questions