Skip to content

Instantly share code, notes, and snippets.

@dhg
Created December 16, 2011 00:23
Show Gist options
  • Save dhg/1483706 to your computer and use it in GitHub Desktop.
Save dhg/1483706 to your computer and use it in GitHub Desktop.
Test for Skeleton
$(document).ready(function() {
/* Tabs Activiation
================================================== */
var tabs = $('ul.tabs');
tabs.each(function(i) {
//Get all tabs
var tab = $(this).find('> li > a');
tab.click(function(e) {
//Get Location of tab's content
var contentLocation = $(this).attr('href');
//Let go if not a hashed one
if(contentLocation.charAt(0)=="#") {
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment