Opened 11 years ago
Closed 11 years ago
#10763 closed bug (cantfix)
data() is gone after drag and drop images in a contenteditable
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.6.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I have an image inside a contenteditable container and I have defined some data to this image with: $('#myImg').data("or_width",100); I see it working well until I drag and drop the image to another position of the contenteditable, then, the associated data dissapear. As a workaround, I have defined the data with: $("#myImg").attr("data-or_width"); With this, I can get the data after move the move, but it is not the best way I think, as that creates a new attribute to the image.
Change History (2)
comment:1 Changed 11 years ago by
comment:2 Changed 11 years ago by
Resolution: | → cantfix |
---|---|
Status: | new → closed |
Confirmed, but it is not a jQuery problem. All dynamic properties seem to be cleared when the image is moved.
Note: See
TracTickets for help on using
tickets.
This is the JSFIDDLE: http://jsfiddle.net/euK2F/