Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

detect distance scrolled from top jquery

Tags:

jquery

How can I detect the number of pixels scrolled in a browser window? I need this to dynamically adjust the height of a 100% height div...

I'm using jQuery.

EDIT: I cannot just use scrollTop() because I'm working with a 100% height div with overflow set to auto. Firefox does not detect browser scrolling due to this, the only thing scrolling is a 100%x100% div...

like image 226
Jorre Avatar asked Jan 07 '10 15:01

Jorre


1 Answers

use $(document).scrollTop() :

$(document).scroll(function() {     console.log($(document).scrollTop()); }) 
like image 144
David Hellsing Avatar answered Oct 04 '22 04:10

David Hellsing