Search code examples
jqueryjquery-uidraggablejquery-ui-draggable

Check enabled/disabled status of a draggable element in jQueryUI


I have some elements which are draggable and I'm changing their status like this:

$(obj).draggable("enable");
// and:
$(obj).draggable("disable");

How can I check the current state of a draggable object, ie. if it's enabled or disabled in jQueryUI?


Solution

  • You can check if the draggable element is disabled like this:

    var isDisabled = $(obj).draggable('option', 'disabled');