Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

can somebody help me please with how to get and also set the position of an element with the jQuery .offset method?

Let’s say I have a Div „layer1“ and another „layer2“. How can I get the position of „layer1“ and set the same position to „layer2“?

Thank you!

share|improve this question
1  
Denise, did you even check the .offset() method on jQuery website? Also, why don't you accept Steve's answer below?! – Rafid Dec 4 '12 at 9:44

4 Answers

//Get
var p = $("#elementId");
var offset = p.offset();

//set
$("#secondElementId").offset({ top: offset.top, left: offset.left})
share|improve this answer
1  
Nice and clear/clean answer. – sabiland Dec 13 '12 at 12:49

I recommend another option. jQuery UI has a new position feature that allows you to position elements relative to each other. For complete documentation and demo see: http://jqueryui.com/demos/position/#option-offset.

Here's one way to position your elements using the position feature:

var options = {
    "my": "top left",
    "at": "top left",
    "of": ".layer1"
};
$(".layer2").position(options);
share|improve this answer
1  
This answer was voted down twice, with no explanation. Please do tell why, if you down vote my answer. Thanks! – KSev Feb 28 at 22:06

Its doable but you have to know that using offset() would set your the position of the element relative to the document:

$('.layer1').offset( $('.layer2').offset() );
share|improve this answer

Here is an option. This is just for the x coordinates.

var div1Pos = $("#div1").offset();
var div1X = div1Pos.left;
$('#div2').css({left: div1X});
share|improve this answer
offset().left and css.left are not same thing, they may or may not have the same values depending on the page structure. – Kalle Mar 30 at 23:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.