Skip to content

Instantly share code, notes, and snippets.

@seppenen
Last active February 18, 2018 22:12
Show Gist options
  • Save seppenen/bbc17a46431403160188f26e04e0bcec to your computer and use it in GitHub Desktop.
Save seppenen/bbc17a46431403160188f26e04e0bcec to your computer and use it in GitHub Desktop.
jquery hide show elements
<script type="text/javascript">
$(document).ready(function() {
$("#show").hide();
$("#hide").bind("click", hideComments);
$("#show").bind("click", showComments);
});
function showComments(){
$("#show").hide();
$("#comments").slideDown(500, function() {
$("#hide").fadeIn(500);
});
}
function hideComments(){
$("#hide").hide();
$("#comments").slideUp(500, function(){
$("#show").fadeIn(500);
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment