Hello, I want to do a simple drag-drop using jQuery. I have not done anything so far, but previous attemps were unsucessful.
Thanks Jean
Hello, I want to do a simple drag-drop using jQuery. I have not done anything so far, but previous attemps were unsucessful.
Thanks Jean
Have you tried jQuery UI Draggable? Simple use case:
<script type="text/javascript">
$(function() {
$("#draggable").draggable();
});
</script>
<div id="draggable" class="ui-widget-content">
<p>Drag me around</p>
</div>