Skip to content

Instantly share code, notes, and snippets.

@jhummel
Created December 19, 2016 19:50
Show Gist options
  • Save jhummel/2b074b08e053f147e8938fa1b33bf86a to your computer and use it in GitHub Desktop.
Save jhummel/2b074b08e053f147e8938fa1b33bf86a to your computer and use it in GitHub Desktop.
Non-ADA Tabs
$(document).ready(function(){
$('ul.tabs li').click(function(){
var tab_id = $(this).attr('data-tab');
$('ul.tabs li').removeClass('current');
$('.tab-content').removeClass('current');
$(this).addClass('current');
$("#"+tab_id).addClass('current');
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment