The first step is to create html page and add links to the javascript files and CSS dependencies to your project. The jqxDragDrop plugin requires the following files:
$("#element").jqxDragDrop({ disabled: true });To get a property(option), you need to pass the property name to the jqxDragDrop's constructor.
var disabled = $("#element").jqxDragDrop('disabled');To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to get when the user start dragging the element. The example code below demonstrates how to bind to the ‘dragStart’ event of jqxDragDrop.
$('#element').on('dragStart', function (event) { alert('Drag Started'); });