The requirement is that image should be fixed in the right bottom corner of my page.
my code : my_image.style.left = wrapper.clientWidth - my_image.clientWidth;
works perfectly in mozilla but it seems that chrome does not understand anything.
I also read article about the same : Understanding offsetWidth, clientWidth, scrollWidth and -Height, respectively
As wrapper width changes as per contents rendered on my page, I cannot give hard-coded values then are there any other attributes which can help me out?
EDIT::: Top is relative and depends on the contents in the wrapper
Thanks.