reverting to old tabs.js because others don't function correctly in IE8-

This commit is contained in:
Dave Gamache 2011-08-17 22:11:39 -07:00
parent 0ed1e6e1ed
commit 751c738bbe

View File

@ -7,34 +7,36 @@
* 8/17/2011 * 8/17/2011
*/ */
$(document).ready(function() { $(document).ready(function() {
/* Tabs Activiation /* Tabs Activiation
================================================= */ ================================================== */
$('ul.tabs > li').live('click', function(e) {
var $tab = $(this); var tabs = $('ul.tabs');
var $href = $tab.find('a:first');
var $otherHrefs = $tab.siblings().find('a'); tabs.each(function(i) {
var contentLocation = $href.attr('href');
//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 //Let go if not a hashed one
if(contentLocation[0]=="#") { if(contentLocation.charAt(0)=="#") {
e.preventDefault(); e.preventDefault();
$otherHrefs.removeClass('active');
//Make Tab Active //Make Tab Active
if (!$href.hasClass('active')){ tab.removeClass('active');
$href.addClass('active'); $(this).addClass('active');
}
//Show Tab Content & add active class //Show Tab Content & add active class
$(contentLocation) $(contentLocation).show().addClass('active').siblings().hide().removeClass('active');
.show()
.addClass('active')
.siblings()
.hide()
.removeClass('active');
} }
}); });
}); });
});