Skip to content

Instantly share code, notes, and snippets.

@thatjeannie
Created December 2, 2015 22:41
Show Gist options
  • Save thatjeannie/df08e884773bf4e23044 to your computer and use it in GitHub Desktop.
Save thatjeannie/df08e884773bf4e23044 to your computer and use it in GitHub Desktop.
// set .form to display: none in css
function showForm() {
$('.form-switch').click(function() {
if ($(this).is(':checked')) {
$('.form').slideDown('slow');
} else {
$('.form').slideUp('slow');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment