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?
You can check if the draggable element is disabled like this:
var isDisabled = $(obj).draggable('option', 'disabled');