aboutsummaryrefslogtreecommitdiff
path: root/webgui/data/tabs.js
blob: d3263c6b98e4cc539970db23d2ddda019bbeb78c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
jQuery(document).ready(function() {
    jQuery('.tabs .tab-links a').on('click', function(e)  {
        var currentAttrValue = jQuery(this).attr('href');
 
        // Show/Hide Tabs
        jQuery('.tabs ' + currentAttrValue).show().siblings().hide();
 
        // Change/remove current tab to active
        jQuery(this).parent('li').addClass('active').siblings().removeClass('active');

        jQuery('.focused').removeClass('focused');
 
        e.preventDefault();
    });
});