Skip to content

Instantly share code, notes, and snippets.

@panych
Created March 9, 2015 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save panych/c46dbc6b48986a6d4f57 to your computer and use it in GitHub Desktop.
Save panych/c46dbc6b48986a6d4f57 to your computer and use it in GitHub Desktop.
Make position: fixed useful for horizontal scrolling
# Make position 'fixed' useful for horizontal scroll
$header = $('.header')
$(window).scroll(()->
$header.css('left', "-#{ $(window).scrollLeft() }px")
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment