Created
May 4, 2011 13:56
-
-
Save imamo/955259 to your computer and use it in GitHub Desktop.
Preveri ali je drsnik do dna div-a
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$('div').bind('scroll',chk_scroll); | |
}); | |
function chk_scroll(e) | |
{ | |
var elem = $(e.currentTarget); | |
if (elem[0].scrollHeight - elem.scrollTop() == elem.outerHeight()) | |
{ | |
console.log("bottom"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment