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?

