Skip to content

Instantly share code, notes, and snippets.

@cjsaylor
Created November 16, 2010 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjsaylor/702079 to your computer and use it in GitHub Desktop.
Save cjsaylor/702079 to your computer and use it in GitHub Desktop.
Scrolltab example
$('#content').scrolltab({
hoverin: function() {
$(this).stop().animate({width: '200px'}, 500);
},
hoverout: function() {
$(this).stop().animate({width: '50px'}, 500);
},
classname: 'scrolltab-content',
title: 'Content'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment