scrollheight jquery code example
Example 1: get current scroll height javascript
document.documentElement.scrollTop || document.body.scrollTop
Example 2: jquery scrollHeight
$('#test')[0].scrollHeight
Example 3: scrollheight jquery
$('#myDiv').prop('scrollHeight')
Example 4: jquery on scroll
Syntax
Trigger the scroll event for the selected elements:
$(selector).scroll()
Attach a function to the scroll event:
$(selector).scroll(function)