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?
ScriptSources tabDOMNodeInserted3 . When a jQuery UI drag with clone helper happens a new DOM element inserted in DOM tree. This element would be last element before
bodyend 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.
Try it here: http://jsbin.com/ijacet/2
UPDATE:
Now you can break on node insertion by right clicking on element: