Changed tab handling from binding a click handler on each tab to a <body> delegate targeting the same tabs

This commit is contained in:
Scott Rabin 2011-09-09 12:07:59 -04:00
parent 3f12a6877e
commit c268f236f0

View File

@ -13,13 +13,7 @@ $(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) {
$('body').delegate('ul.tabs > li > a', 'click', function(e) {
//Get Location of tab's content
var contentLocation = $(this).attr('href');
@ -30,13 +24,13 @@ $(document).ready(function() {
e.preventDefault();
//Make Tab Active
tab.removeClass('active');
$(this).parent().siblings().children('a').removeClass('active');
$(this).addClass('active');
//Show Tab Content & add active class
$(contentLocation).show().addClass('active').siblings().hide().removeClass('active');
$(contentLocation).show().addClass('active')
.siblings().hide().removeClass('active');
}
});
});
});