I have a very odd and simple problem. When I add the helper: 'clone' to my draggable item, I get nothing. No clone, no events, it's as if the code fails entirely, yet no JS error throws. Remove it and the drag works fine, but of course no clone.
My draggable div looks like this:
<div id="sticker1" class="drag"></div>
My draggable code looks like this:
$('.drag').draggable({
helper: 'clone',
cursor: 'hand'
});
I'm using JQuery 1.6.4 and JQueryUI 1.8.16. Using latest Safari & Firefox for testing.
What I need to be able to do is allow the user to click on a sticker, clone the sticker under the mouse, allow them to drag that sticker to a new location, and drop. Very simple. I have a CSS with all the proper heigh and widths designated. Nothing else big is going on.