Skip to content

Instantly share code, notes, and snippets.

View ThomasBush's full-sized avatar

Thomas Bush ThomasBush

  • HexArmor
  • Atlanta, Georgia
View GitHub Profile
@daviferreira
daviferreira / smooth-scrolling.coffee
Created March 31, 2012 23:46
Smooth scrolling for anchor '#' links using jQuery and CoffeeScript
# based on http://www.paulund.co.uk/smooth-scroll-to-internal-links-with-jquery
$ ->
$('a[href^="#"]').on 'click.smoothscroll', (e) ->
e.preventDefault()
target = @hash
$target = $(target)