Sep 24, 2012

With the help of jQuery, you can do dragging of your text. For more advance developer, the dragging can response to the position you release your text.











Drag me around






<div class="ui-widget-content" id="draggable">
Drag me around</div>
<script>$(function() {
  $( "#draggable" ).draggable();
 });
 </script>