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
*/
$(document).ready(function() {
/* Tabs Activiation
================================================= */
$('ul.tabs > li').live('click', function(e) {
var $tab = $(this);
var $href = $tab.find('a:first');
var $otherHrefs = $tab.siblings().find('a');
var contentLocation = $href.attr('href');
================================================== */
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[0]=="#") {
if(contentLocation.charAt(0)=="#") {
e.preventDefault();
$otherHrefs.removeClass('active');
//Make Tab Active
if (!$href.hasClass('active')){
$href.addClass('active');
}
tab.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');
}
});
});
});