Skip to content

Instantly share code, notes, and snippets.

@ktraff
Created April 6, 2013 20:43
Show Gist options
  • Save ktraff/5327554 to your computer and use it in GitHub Desktop.
Save ktraff/5327554 to your computer and use it in GitHub Desktop.
$("#hide").click(function() {
$("#feedback").hide('slow', function() {
alert('Feedback toggled.'); //add some logic here
});
});
$("#display").click(function()
$("#feedback").show('slow', function() {
alert('Feedback toggled.'); //add some logic here
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment