I am fairly new to Vue and Javascript and I'm encountering an issue with two buttons that should change background colors when clicked. I've written some Javascript code to make them toggle, however, the problem is that while the Free button successfully changes the background color, the Paid button does not.
If anyone could provide assistance, it would be greatly appreciated.
function changeType(type) {
var element = document.getElementById("myDIV");
element.classList.toggle("active");
}
Here is the link to the Codepen showcasing what I am attempting to achieve:
https://codepen.io/Aadil_Hafesji/pen/bxZWLg
Thank you very much!!!