I use the Google Chrome developer tools. When I want to inspect an element, I usually right click it and select "inspect element". This doesn't work for draggable helper clones. My code is as follows:

$myElement.draggable({helper: 'clone'});

How can I inspect the helper clone that is only created once I start dragging the element?

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted
+25
  1. Go to Script tab
  2. In the right panel under Event Listener Breakpoints and under DOM Mutation choose DOMNodeInserted

enter image description here

3 . When a jQuery UI drag with clone helper happens a new DOM element inserted in DOM tree. This element would be last element before body end tag. then developer tool halt the document from operation because it have a breakpoint for insertion of a DOM element.

4 . Now you can inspect the cloned element and edit the CSS or so...

Note: It seems those breakpoints doesn't work in Mac very well.

enter image description here

Try it here: http://jsbin.com/ijacet/2

link|improve this answer
Wow. How did you make the background black like this? :) – Randomblue Sep 28 '11 at 21:12
2  
There is a Custom.css file that you can edit it. Go to C:\Users\||||USERNAME||||\AppData\Local\Google\Chrome\User Data\Default\User StyleSheets and edit it. Or use this css that I'm using: gist.github.com/1249280 – Mohsen Sep 28 '11 at 21:18
I've done what you said, but the developer tool does halt the document after dragging... – Randomblue Sep 28 '11 at 21:18
If you don't drag cloning do not happens. What you exactly want? – Mohsen Sep 28 '11 at 21:23
I'm dragging the element! But when I let go the mouse it disappears, as usual. – Randomblue Sep 28 '11 at 21:24
show 2 more comments
feedback

As far as I know, you can't. You could (for testing purposes only) clone it explicitly, and append it to the document. Then you could inspect the clone just like any other element. Something like this would probably accomplish that:

var tempElement = $myElement.clone();
tempElement.appendTo('body');

now, the clone should appear at the bottom of the document body, and you should be able to select it with your mouse when in the Inspector mode.

Depending on what you're trying to figure out, this may or not give you enough information to extrapolate what the draggable's automatically created clone would look like.

link|improve this answer
feedback

jQueryUI will create an exact copy of the draggable item. Therefore you don't need to inspect the item you drag, but you can inspect the item which is being dragged.

Using the appendTo() option in the draggable you will even be able to define a location at which the draggable will be put into. ( http://jqueryui.com/demos/draggable/#option-appendTo )

Doing this by hand (so placing the code there by hand, in the container in which you like) you can inspect the actual object.

link|improve this answer
feedback

Just throw an exception from inside some code that is triggered while you are dragging - this will kill the js that erases the draggable element when you release the mouse button and freeze the draggable where it was on the screen when the exception occurred.

Then you are free to inspect it to your hearts content :)

The easy way is to throw an exception when you try to drop the element on a dropable, that's how i usually do it.

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.