Hi Crtl-Alt-Delete    you can easily get draggable current position by this.x / this.y , like this :   TweenLite.set('.box',{x:100,y:100}); // set position Draggable.create('.box',{ onDragEnd:function(){   console.log(this.x+','+this.y) // get position } });
    • Like
    3