Here's my problem..
I have a input field followed by a button. I'm trying to make the button draggable so when it is dragged and dropped into another input field, the current input field gets updated with the other input field's content formatted in a special way.
So far so good. Except that jQuery wont let me make the button draggable. I've tried to use an helper div and clone with no luck. It seems only containers elements like divs and spans can be draggable.
So my question is: Is it possible to achieve the behavior I want while keeping my current markup (a button element) ?