Skip to content

Instantly share code, notes, and snippets.

@rabellamy
Created September 14, 2013 13:19
Show Gist options
  • Save rabellamy/6561970 to your computer and use it in GitHub Desktop.
Save rabellamy/6561970 to your computer and use it in GitHub Desktop.
//About What Toggle
(function($){
$(document).ready(function($) {
$('.about-what-overview-button-txt-000').click(function(event) {
event.preventDefault();
if($(this).parentsUntil('.about-what-region1').find('.about-what-overview-block-320-bottom').hasClass('about-what-toggle-display')) {
$(this).parentsUntil('.about-what-region1').find('.about-what-overview-block-320-bottom').removeClass('about-what-toggle-display');
} else {
$(this).parentsUntil('.about-what-region1').find('.about-what-overview-block-320-bottom').addClass('about-what-toggle-display');
}
});
});
})(jQuery);
.about-what-toggle-display {
@include breakpoint($b320) {
display: inline-block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment