Reputation: 4115
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?
Upvotes: 1
Views: 2449
Reputation: 337560
You can check if the draggable element is disabled like this:
var isDisabled = $(obj).draggable('option', 'disabled');
Upvotes: 3
Reputation: 82241
var status=$(obj).draggable();
status will current draggable status of obj
.
Upvotes: 0