I'm creating a very simple drag and drop application.
The drag and drop functionality using html5 works perfectly on desktop.
I want to replicate the functionality of drag and drop using click(select) and click(target, drop).
What I want to happen.
You click on the element you want to move (i.e with mouse or finger in mobile situation)
the element you've selected is stored in the dom and then on the next click (in a target area) the element is appended.
Is this achievable and how?
Thanks