Skip to content

Instantly share code, notes, and snippets.

@ascsystems
Created September 9, 2013 00:35
Show Gist options
  • Select an option

  • Save ascsystems/6489982 to your computer and use it in GitHub Desktop.

Select an option

Save ascsystems/6489982 to your computer and use it in GitHub Desktop.
var href = $(this).attr('href');
$('.navbar-inner ul').filter(':visible').animate({ width:'0px' }, 1000, function(){
$(this).hide();
$('#' + href).show(function(){
$(this).animate({ width: '100%' }, 1000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment