I am trying to use jQuery in Oxygen Builder (WordPress) to remove a class from other radio buttons when I click on a radio button in a different section.
jQuery(document).ready(function(){
jQuery("div").click(function(){
jQuery("div.volba-1-1 div, div.volba-1-2 div, div.volba-1-3 div").removeClass("ff_item_selected");
});
});
Although this solution works for me, I have encountered an issue where the radio button remains visually selected even after removing the class. Can anyone provide assistance with this problem?
To see the issue in action, please visit my website: enter link description here
Here is an image illustrating my problem: Image description
Thank you!