How do I get the coordinate position after using jQuery drag and drop? I want to save the coordinate to a database, so that next time I visit, the item will be in that posi
I was need to save the start position and the end position. this work to me:
$('.object').draggable({ stop: function(ev, ui){ var position = ui.position; var originalPosition = ui.originalPosition; } });