Skip to content

Instantly share code, notes, and snippets.

@rickydazla
Created February 25, 2015 03:00
Show Gist options
  • Save rickydazla/0cfcbbd7c5bba6fbec9d to your computer and use it in GitHub Desktop.
Save rickydazla/0cfcbbd7c5bba6fbec9d to your computer and use it in GitHub Desktop.
simple-image-switch
$('.thumb img').click(function(){
$('img#featured').attr('src',$(this).attr('src').replace('compact','1024x1024'));
$(this).parents('li').addClass('active').siblings('li').removeClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment