Skip to content

Instantly share code, notes, and snippets.

@gmaggio
Created July 1, 2014 08:58
Show Gist options
  • Save gmaggio/5559ae5fcc049676a0ff to your computer and use it in GitHub Desktop.
Save gmaggio/5559ae5fcc049676a0ff to your computer and use it in GitHub Desktop.
[jQuery] Toggle height of element in jQuery
var intH = 0,
finH = 40;
$(document).ready(function(){
$("#topbar").click(function () {
$(this).animate({
height: ($(this).height() == finH) ? intH : finH
}, 200);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment