Reputation: 13442
I'm trying to put together an image uploader. I want to upload images into a contenteditable area with drag-and-drop.
As I drag the file, I see the cursor moving - unless e.preventDefault() was called.
In Chrome, there is a function document.caretRangeFromPoint(x, y)
to convert coordinates to cursor position (range).
As far as I'm reading, there is no such in Firefox. (please prove mo wrong)
Is that moving cursor which I can see to be catched somehow? Maybe in the dragover/drop event? As for my experiments, it is not accessible as a range in the dragover event. I wish I was wrong.
Upvotes: 1
Views: 1969
Reputation: 324567
The standards-based method that all browsers will hopefully eventually support is document.caretPositionFromPoint()
and Firefox doesn't support it yet. There is an open bug on it though:
https://bugzilla.mozilla.org/show_bug.cgi?id=654352
Update
Firefox has supported this since version 20.
Upvotes: 1