i want the draggable object to revert back to its original position when i click a button. i used \'destroy\' option but it doesnt seem to work. it disables the dragging but
Revert option is set to false by default, you've to set it to true.
$("#draggable").draggable({ revert: true });
this should do it actually...