Skip to content

Instantly share code, notes, and snippets.

@flagoworld
Created May 15, 2011 21:30
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 flagoworld/973560 to your computer and use it in GitHub Desktop.
Save flagoworld/973560 to your computer and use it in GitHub Desktop.
$(document).ready(function()
{
$('.aboutNav img').click(function()
{
var title=$(this).attr('title');
$('.contentAbout div').fadeOut(500,function()
{
alert('faded');
$('#'+title).fadeIn(500);
});
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment