HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/www/WP-POS/wp-content/themes/angle/functions/wpzoom/assets/js/shortcode-tabs.js
jQuery(function ($) {
    $('.shortcode-tabs').each(function () {
        var tabCount = 1;

        $(this).children('.tab').each(function (index, element) {
            var idValue = jQuery(this).parents('.shortcode-tabs').attr('id');

            var newId = idValue + '-tab-' + tabCount;

            $(this).attr('id', newId);
            $(this).parents('.shortcode-tabs').find('ul.tab_titles').children('li').eq(index).find('a').attr('href', '#' + newId);

            tabCount++;
        });

        var thisID = $(this).attr('id');

        var tabber = $(this).tabs({ fx: { opacity: 'toggle', duration: 200 } });

        // Check for a matching hash and select that tab if one is found.
        var currentHash = window.location.hash;
        currentHash = currentHash.replace('#', '');
        if (currentHash != '') {
            tabber.tabs('select', currentHash);
        }
    });
})