Skip to content

Instantly share code, notes, and snippets.

@celticwebdesign
Created January 23, 2016 14:59
Show Gist options
  • Save celticwebdesign/67c450280d9a61b64edf to your computer and use it in GitHub Desktop.
Save celticwebdesign/67c450280d9a61b64edf to your computer and use it in GitHub Desktop.
Slide-Down Panel
HTML
<div class="treatments-view-all">
<a href='#'>View all ></a>
</div>
CSS
.no-height {display: none;}
JS
$('.treatments-view-all a').click(function(e) {
e.preventDefault();
$('.treatments .no-height').slideToggle(function() {
$('.treatments-view-all').hide();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment