Skip to content

Instantly share code, notes, and snippets.

@Kah0ona
Created July 16, 2014 09:37
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 Kah0ona/eace7fb343a0a4a72d85 to your computer and use it in GitHub Desktop.
Save Kah0ona/eace7fb343a0a4a72d85 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($){
$('.tabs').click(function(evt){
evt.preventDefault();
$('.tabtargets').hide();
var clicked = $(evt.currentTarget);
var toShow = clicked.attr('data-target');
$(toShow).show();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment