Skip to content

Instantly share code, notes, and snippets.

@rabellamy
Created July 31, 2013 19:20
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 rabellamy/6125254 to your computer and use it in GitHub Desktop.
Save rabellamy/6125254 to your computer and use it in GitHub Desktop.
(function($){
$(document).ready(function($) {
$('.about-what-toggle').click(function(event) {
event.preventDefault();
if($(this).parent().find('.about-what-bullet_bottom6').hasClass('show-about-bottom')){
$(this).parent().find('.about-what-bullet_bottom6').removeClass('show-about-bottom');
} else {
$(this).parent().find('.about-what-bullet_bottom6').addClass('show-about-bottom');
}
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment