Jquery Draggable Sortable Nested Divs

by skibulk

HTML

<div class="target"></div>

CSS

.target {
    width: 200px;
    height: 200px;
    background: gray;
    position: relative;
}

.target:hover:after {
    content: "ADD";
    position: absolute;
    top: 0;
    left: 0;
}

JavaScript

$div = $('.target');
$div.mousemove(function( event ) {
  $div.html( "<p>" + event.pageX + ", " + event.pageY + "</p>" );
});