Skip to content

Instantly share code, notes, and snippets.

@LuchoLopez
Created July 12, 2013 13:00
Show Gist options
  • Save LuchoLopez/5984266 to your computer and use it in GitHub Desktop.
Save LuchoLopez/5984266 to your computer and use it in GitHub Desktop.
no es de mi autoria, pero esta bueno tenerlo a mano
$(function () {
var $el = $('.fixedElement'),
originalTop = $el.offset().top; // store original top position
$(window).scroll(function(e){
if ($(this).scrollTop() > originalTop ){
$el.css({'position': 'fixed', 'top': '0px'});
} else {
$el.css({'position': 'absolute', 'top': originalTop});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment