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
================================================== -->
<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>
<!-- End Document

View File

@ -1,5 +1,5 @@
/*
* Skeleton V1.1
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
@ -8,18 +8,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,7 +19,7 @@ $(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
@ -38,5 +27,3 @@ $(document).ready(function() {
}
});
});
});

View File

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