HEX
Server: LiteSpeed
System: Linux server44.twelveinks.com 5.14.0-570.12.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 13 06:11:55 EDT 2025 x86_64
User: moda (1338)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /python/moda/public_html/tech/old/templates/hostx/store/weebly/master.js
jQuery(document).ready(function(){
    jQuery('.landing-page.weebly .cycle-change').on('click', function() {
        var newCycle = jQuery(this).data('cycle');
        jQuery('.row.weebly-plans .pricing-text').hide();
        jQuery('.landing-page.weebly .' + newCycle).removeClass('hidden').show();
        jQuery('.landing-page.weebly .cycle-change').removeClass('active');
        jQuery(this).addClass('active');
        jQuery('.landing-page.weebly .pricing input[name="billingcycle"]').val(newCycle);
        jQuery('.weebly-plans div.pricing-item').each(function(index) {
            if (jQuery(this).find('.' + newCycle).length <= 0) {
                jQuery(this).find('span.not-available').removeClass('hidden').show();
                jQuery(this).parent('div').find('.btn-signup').prop('disabled', true);
                jQuery(this).fadeTo('slow', 0.5);
            } else {
                jQuery(this).find('span.not-available').hide();
                jQuery(this).parent('div').find('.btn-signup').prop('disabled', false);
                jQuery(this).fadeTo('slow', 1);
            }
        });
    });

    var startCycle = jQuery('.btn.cycle-change.active').data('cycle');
    jQuery('.landing-page.weebly .pricing input[name="billingcycle"]').val(startCycle);
});