Skip to content
const toggle=document.getElementById("billingToggle");
toggle.addEventListener("click",function(){
this.classList.toggle("active");
const yearly=this.classList.contains("active");
document.querySelectorAll(".price").forEach(function(price){
const value=yearly?price.dataset.year:price.dataset.month;
price.innerHTML="KES "+Number(value).toLocaleString();
});
document.querySelectorAll(".period").forEach(function(period){
period.innerHTML=yearly?"/year":"/month";
});
});