I have written some jquery code to change the currency from one to another. I have some different plans for monthly and annually so I used a toggle switch for it and I Just want to know that how to add the price for both plans by my jquery code. Please check the code below
var prices = [
1500,
2000,
342
];
var currencies = {
USD: {
rate: 1,
sign: "$",
something_at_the_end: "test"
},
EUR: {
rate: 0.86,
sign: "€",
something_at_the_end: "EURO TEST"
}
};
function updatePrices(currency) {
var elements = document.getElementsByClassName("price");
prices.forEach((price, index) => {
elements[index].innerHTML = currency.sign + parseFloat(price * currency.rate) +
currency.something_at_the_end
});
}
document.getElementById("selector").onchange = function () {
updatePrices(currencies[this.value]);
}
updatePrices(currencies.USD);
Currently, it shows prices 1500, 2000, 342 for the first three pricing tables. So when I click on annually toggle all the div change to annually from monthly so my question is how to add price for annually section
question from:
https://stackoverflow.com/questions/66062024/change-prices-for-monthly-and-anually-section-by-jquery 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…