.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.
To set the position relative to the parent you need to set the
position:relativeof parent andposition:absoluteof the elementThis works because
position: absolute;positions relatively to the closest positioned parent (i.e., the closest parent with any position property other than the defaultstatic).