changing to lastest jQuery version and using new tabs js

This commit is contained in:
Dave Gamache 2012-01-25 20:51:32 -08:00
parent 2dfa28cea9
commit b43be292ee
3 changed files with 15 additions and 30 deletions

View File

@ -72,7 +72,7 @@
<!-- JS <!-- JS
================================================== --> ================================================== -->
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="javascripts/tabs.js"></script> <script src="javascripts/tabs.js"></script>
<!-- End Document <!-- End Document

View File

@ -1,5 +1,5 @@
/* /*
* Skeleton V1.1 * Skeleton V1.2
* Copyright 2011, Dave Gamache * Copyright 2011, Dave Gamache
* www.getskeleton.com * www.getskeleton.com
* Free to use under the MIT license. * Free to use under the MIT license.
@ -8,35 +8,22 @@
*/ */
$(document).ready(function() { $('body').delegate('ul.tabs > li > a', 'click', function(e) {
/* Tabs Activiation //Get Location of tab's content
================================================== */ var contentLocation = $(this).attr('href');
var tabs = $('ul.tabs'); //Let go if not a hashed one
if(contentLocation.charAt(0)=="#") {
tabs.each(function(i) { e.preventDefault();
//Get all tabs //Make Tab Active
var tab = $(this).find('> li > a'); $(this).parent().siblings().children('a').removeClass('active');
tab.click(function(e) { $(this).addClass('active');
//Get Location of tab's content //Show Tab Content & add active class
var contentLocation = $(this).attr('href'); $(contentLocation).show().addClass('active').siblings().hide().removeClass('active');
//Let go if not a hashed one }
if(contentLocation.charAt(0)=="#") {
e.preventDefault();
//Make Tab Active
tab.removeClass('active');
$(this).addClass('active');
//Show Tab Content & add active class
$(contentLocation).show().addClass('active').siblings().hide().removeClass('active');
}
});
});
}); });

View File

@ -232,5 +232,3 @@
width: 0; width: 0;
height: 0; height: 0;
} }