vote up 4 vote down star
2

I need to grab the height of the window and the scrolling offset in jQuery, but I haven't had any luck finding this in the jQuery docs or Google. I'm 90% certain there's a way to access height and scrollTop for an element (presumably including the window), but I just can't find the specific reference.

Any help is appreciated! Thanks!

flag

2 Answers

vote up 13 vote down check

From jQuery Docs:

var height = $(window).height();
var scrollTop = $(window).scrollTop();

http://docs.jquery.com/CSS/scrollTop
http://docs.jquery.com/CSS/height

link|flag
Figures I just missed it in the docs; searched them, but their organization frankly makes no sense to me (still thinking in Mootools, I suppose). Thanks! – One Crayon Nov 19 '08 at 23:31
vote up 3 vote down

$(window).height()

$(window).width()

there is also a plugin to jquery to determine element location and offsets

http://plugins.jquery.com/project/dimensions

scrolling offset = offsetHeight property of an element

link|flag
Thanks, Joseph. It's not exactly what I was looking for as I was trying to avoid using another plugin, but you got me searching in the right direction. In the end, it turns out what I really needed was '$(window).scrollTop()' to figure out how much of the page has scrolled past the viewport to adjust elements accordingly. – DA Oct 14 at 16:26
oops. wrong thread. Still, my comment applies. ;) – DA Oct 14 at 16:27

Your Answer

Get an OpenID
or

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