I have been able to drag and drop element within same paper. Now I need to be able to drag and drop raphael element from one paper container to another. Here is the example:
drag from first svg to second svg
first svg element in html
<svg style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);" xmlns="http://www.w3.org/2000/svg" version="1.1" width="500" height="260">
<rect style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);" x="10" y="15" width="64" height="64" r="5" rx="5" ry="5" fill="#ffc0cb" stroke="#000">
</rect>
</svg>
second svg element in html
<svg style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);" </svg>
First of all, is it possible to do? If possible, please give me some clue how to do it. thanks!