Here an example http://jsfiddle.net/naqbq/
How do I grab current position for x and y after re-position the image?
x
y
You can use jQuery's .offset().
.offset()
http://api.jquery.com/offset/
alert($('#image').offset().top); alert($('#image').offset().left);