simple-drag-source.mustache revision 5b139d58acfcae4b1bcab5a895706abafc2a87a0
<style>
#demo {
height: 100px;
width: 100px;
border: 1px solid black;
background-color: #8DD5E7;
cursor: move;
}
</style>
<div id="demo">Drag Me</div>
<script>
YUI().use('dd-drag', function(Y) {
var dd = new Y.DD.Drag({
//Selector of the node to make draggable
node: '#demo'
});
});
</script>