.offset([coordinates]) method set the coordinates of an element but only relative to the document. Then how can I set coordinates of an element but relative to the parent?
I found that .position() method get only "top,left" values relative to the parent, but it doesn't set any values.
I tried with
$("#mydiv").css({top: 200, left: 200});
but does not work.