How to get the scroll position value of a document?
If you are using Jquery 1.6 or above, use prop to access the value.
$(document).prop('scrollHeight')
Previous versions used to get the value from attr but not post 1.6.