0

I have a div and I need to find its position when the browser scrollbar is moved up or down. This would help me detect the current position of this div and depending on the current position of this div I can place another div on top of it.

1 Answer 1

1

You can grab the position like this:

var offset = $('#element').offset();
alert(offset.top + offset.left);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.