Skip to content

Instantly share code, notes, and snippets.

@steel1990
Last active August 29, 2015 14:03
Show Gist options
  • Save steel1990/26c4fcc1c64d1184ceee to your computer and use it in GitHub Desktop.
Save steel1990/26c4fcc1c64d1184ceee to your computer and use it in GitHub Desktop.
var isSupportFixed = function () {
var $div = $('<div>').css({
position: 'fixed',
top: '10px'
}).appendTo('body');
var isSupportFixed = $div.offset().top === 10 + $(window).scrollTop();
$div.remove();
return isSupportFixed;
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment