Skip to content

Instantly share code, notes, and snippets.

@imamo
Created May 4, 2011 13:56
Show Gist options
  • Save imamo/955259 to your computer and use it in GitHub Desktop.
Save imamo/955259 to your computer and use it in GitHub Desktop.
Preveri ali je drsnik do dna div-a
$(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