Skip to content

Instantly share code, notes, and snippets.

@sapslaj
Created June 11, 2015 02:25
Show Gist options
  • Select an option

  • Save sapslaj/0836bd2ac25735fc3d69 to your computer and use it in GitHub Desktop.

Select an option

Save sapslaj/0836bd2ac25735fc3d69 to your computer and use it in GitHub Desktop.
Very simple jQuery collapsing thingy
$ ->
$parent = $('.collapsable')
$parent.find('.collapsable-header').click (e) ->
$parent.find('.collapsable-content').slideToggle('slow')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment