PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
shortcodes
/
tabs
/
assets
/
js
/
parts
(function ($) { "use strict"; qodefCore.shortcodes.webon_core_tabs = {}; $(document).ready(function () { qodefTabs.init(); }); var qodefTabs = { init: function () { this.holder = $('.qodef-tabs'); if (this.holder.length) { this.holder.each(function () { qodefTabs.initTabs($(this)); }); } }, initTabs: function ($tabs) { $tabs.children('.qodef-tabs-content').each(function (index) { index = index + 1; var $that = $(this), link = $that.attr('id'), $navItem = $that.parent().find('.qodef-tabs-navigation li:nth-child(' + index + ') a'), navLink = $navItem.attr('href'); link = '#' + link; if (link.indexOf(navLink) > -1) { $navItem.attr('href', link); } }); $tabs.addClass('qodef--init').tabs(); } }; qodefCore.shortcodes.webon_core_tabs.qodefTabs = qodefTabs; })(jQuery);
[+]
..
[-] tabs.js
[edit]