Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created March 23, 2010 16:16
Show Gist options
  • Save fleeting/341341 to your computer and use it in GitHub Desktop.
Save fleeting/341341 to your computer and use it in GitHub Desktop.
$('#nav a').hover(
function() {
$(this).stop.animate({
borderRightWidth: "15px",
paddingRight: "6px"
}, 800, function() {
// Animation complete.
});
},
function () {
$(this).stop.animate({
borderRightWidth: "0px",
paddingRight: "0px"
}, 800, function() {
// Animation complete.
});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment