Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created February 13, 2014 14:50
Show Gist options
  • Save ingozoell/8976302 to your computer and use it in GitHub Desktop.
Save ingozoell/8976302 to your computer and use it in GitHub Desktop.
$(".panel").toggle(
function()
{
$(this).animate({width:'300px',height:'300px'}, 200);
},
function()
{
$(this).animate({width:'152px',height:'152px'}, 200);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment