Server IP : 150.95.80.236 / Your IP : 3.144.40.212 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/js/custom/pages/general/ |
Upload File : |
"use strict"; // Class definition var KTGeneralPricing = function () { // Private variables var element; var planPeriodMonthButton; var planPeriodAnnualButton; var changePlanPrices = function(type) { var items = [].slice.call(element.querySelectorAll('[data-kt-plan-price-month]')); items.map(function (item) { var monthPrice = item.getAttribute('data-kt-plan-price-month'); var annualPrice = item.getAttribute('data-kt-plan-price-annual'); if ( type === 'month' ) { item.innerHTML = monthPrice; } else if ( type === 'annual' ) { item.innerHTML = annualPrice; } }); } var handlePlanPeriodSelection = function(e) { // Handle period change planPeriodMonthButton.addEventListener('click', function (e) { e.preventDefault(); changePlanPrices('month'); }); planPeriodAnnualButton.addEventListener('click', function (e) { e.preventDefault(); changePlanPrices('annual'); }); } // Public methods return { init: function () { element = document.querySelector('#kt_pricing'); planPeriodMonthButton = element.querySelector('[data-kt-plan="month"]'); planPeriodAnnualButton = element.querySelector('[data-kt-plan="annual"]'); // Handlers handlePlanPeriodSelection(); } } }(); // On document ready KTUtil.onDOMContentLoaded(function() { KTGeneralPricing.init(); });