changing to lastest jQuery version and using new tabs js
This commit is contained in:
parent
2dfa28cea9
commit
b43be292ee
@ -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
|
||||
|
@ -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,13 +19,11 @@ $(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');
|
||||
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
2
stylesheets/skeleton.css
vendored
2
stylesheets/skeleton.css
vendored
@ -232,5 +232,3 @@
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user