I have draggable objects, and each content of an object can be editable. Here is a sample: http://jsfiddle.net/ashish41191/UH9UE/366/
The problem is when I type some words initially in an object, let's say the text is test for copy paste action
. This is enclosed in a DIV <div> content </div>
. If I select all of the typed words (ctrl + A or cmd + A) then paste it on the same text field, the pasted texts are not appended on the DIV. It rather creates a <span> copy paste words </span>
inside the DIV. Can it be just appended on the DIV, like <div> content copy paste words </div>
?