up vote 0 down vote favorite
share [g+] share [fb]

After creating a div on the fly with this markup:

$('.circuit').prepend("<div class='component' draggable='true'>TRANSISTOR</div>");

It is NOT draggable itself :(

Is jQuery prepend() the correct way to create "live" tags in the DOM?

Do I need to somehow bless it a different way to make draggable=true really work?

How to I wire it up so that on-the-fly divs can be draggable?

AFTER NOTE: I added a static div and that is draggable. INTERESTING: I view both the static and dynamic using FireFox F12 Firebug and they are identical. But one is draggable and one is not!!!

link|improve this question

Thanks, Nick. I had no idea I was supposed to be doing that!!! – Pete Alvin Mar 13 '10 at 19:58
Consider posting a full sample on e.g. jsbin.com. Or at least append the javascript you use to wire up the draggable. – jitter Mar 14 '10 at 12:41
feedback

1 Answer

up vote 0 down vote accepted

If it's not in markup when the page is rendered, the browser is't binding them based just off having the attribute (when created dynamically) quite yet (maybe in future releases this will happen). For now, you need to rig up these events manually when creating a draggable element on the fly.

See here for how to do it using jQuery & FireFox: HTML5 drag and drop in Firefox 3.5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.