Skip to content

Instantly share code, notes, and snippets.

Created January 12, 2010 21:37
Show Gist options
  • Save anonymous/275639 to your computer and use it in GitHub Desktop.
Save anonymous/275639 to your computer and use it in GitHub Desktop.
$(function() {
$('div.slides a').click(function() {
var rel = $(this).attr('rel');
$('div.photo').fadeOut(800);
$('div#'+rel).fadeIn(800);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment