Skip to content

Instantly share code, notes, and snippets.

@megabayt
Last active November 25, 2017 16:24
Show Gist options
  • Save megabayt/7affdf2be590fc44041e6e47fe9d98cf to your computer and use it in GitHub Desktop.
Save megabayt/7affdf2be590fc44041e6e47fe9d98cf to your computer and use it in GitHub Desktop.
Accordion
$('.accordion-link').click(function(){
var $btn = $(this);
var $tab = $btn.next();
if($tab.is(':visible')){
$('.tabcontent').slideUp();
}else{
$('.tabcontent').slideUp();
$tab.slideDown(function(){
$('html,body').animate({
scrollTop: $btn.offset().top - ($(document).width()<768 ? 60 : $('.header-fixed').height())
})
})
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment