Can a WordPress radio button’s class be removed on click anywhere?
i want to remove class from others radio buttons when i click on radio button in another section with jQuery( used in oxygen builder wordpress). 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"); }); }); This works fine for me,…