Created
January 23, 2016 14:59
-
-
Save celticwebdesign/67c450280d9a61b64edf to your computer and use it in GitHub Desktop.
Slide-Down Panel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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