Skip to content

Instantly share code, notes, and snippets.

@flagoworld
Created January 30, 2012 03:19
Show Gist options
  • Save flagoworld/1702272 to your computer and use it in GitHub Desktop.
Save flagoworld/1702272 to your computer and use it in GitHub Desktop.
$(function()
{
$('#crafting-recipe').bind('expand',function()
{
$(this).children().slideDown(1000);
}).bind('collapse',function()
{
$(this).children().next().slideUp(1000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment