<divid="draggable"></div><script>$("#draggable").kendoDraggable({hint:function(element){return element.clone();},drag:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("x: ", e.screenX,"y: ", e.screenY);}});</script><style>#draggable{width:50px;height:50px;background-color:orange;border:2px solid green;}</style>
<divid="draggable"></div><script>$("#draggable").kendoDraggable({hint:function(element){return element.clone();}});$("#draggable").data("kendoDraggable").bind("drag",function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("x: ", e.screenX,"y: ", e.screenY);});</script><style>#draggable{width:50px;height:50px;background-color:orange;border:2px solid green;}</style>