Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created March 2, 2010 21:15
Show Gist options
  • Save fleeting/319954 to your computer and use it in GitHub Desktop.
Save fleeting/319954 to your computer and use it in GitHub Desktop.
$("#whatwedo").click(function() {
if ( $('#whatwedoLI').width() == 98 ) {
$("#whatwedoLI").animate({
width: '310px'
}, 3000);
$("#whatwedo").addClass('active');
} else {
$("#whatwedoLI").animate({
width: '100px'
}, 3000);
$("#whatwedo").removeClass('active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment