Skip to content

Instantly share code, notes, and snippets.

@jim
Created October 17, 2008 15:08
Show Gist options
  • Save jim/17437 to your computer and use it in GitHub Desktop.
Save jim/17437 to your computer and use it in GitHub Desktop.
$("div#featured_navigation a").click(function () {
$(this).effect("highlight", { color: "#a7d6ee" }, 500);
var id = '#' + $(this).attr('id').replace('_nav', '');
if (!$(id).is(':visible')) {
$(".boxclass:visible").fadeOut(1000, function(){$(id).fadeIn(1000)})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment