Skip to content

Instantly share code, notes, and snippets.

@zurie
Created February 19, 2015 15:23
Show Gist options
  • Select an option

  • Save zurie/d85680ce18861b79fc0f to your computer and use it in GitHub Desktop.

Select an option

Save zurie/d85680ce18861b79fc0f to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$("a.switch_thumb").toggle(function(){
$(this).addClass("swap");
$("ul.display").fadeOut("fast", function() {
$(this).fadeIn("fast").addClass("thumb_view");
});
}, function () {
$(this).removeClass("swap");
$("ul.display").fadeOut("fast", function() {
$(this).fadeIn("fast").removeClass("thumb_view");
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment