Skip to content

Instantly share code, notes, and snippets.

@jaromirnyklicek
Created April 18, 2012 14:09
Show Gist options
  • Save jaromirnyklicek/2413837 to your computer and use it in GitHub Desktop.
Save jaromirnyklicek/2413837 to your computer and use it in GitHub Desktop.
Scrollovani
function checkScroll($parent) {
if($parent.scrollBottom() == 300) {
$('#social').css(position: 'absolute');
} else {
$('#social').css(position: 'fixed');
}
}
$(document).ready(function() {
checkScroll($(this));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment