Skip to content

Instantly share code, notes, and snippets.

@carbone
Last active February 5, 2018 19:40
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 carbone/83e5bba294095ca545d054d1ca4c3600 to your computer and use it in GitHub Desktop.
Save carbone/83e5bba294095ca545d054d1ca4c3600 to your computer and use it in GitHub Desktop.
Add this to the Assets folder.
// See https://customfields.zendesk.com/hc/en-us/articles/360000622771
jQuery(document).ready(function(){
jQuery('ul.tabs li').click(function(){
var tab_id = $(this).attr('data-tab');
jQuery('ul.tabs li').removeClass('current');
jQuery('.tab-content').removeClass('current');
jQuery(this).addClass('current');
jQuery("#"+tab_id).addClass('current');
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment