/* Use this file to customize your site with Javascript */ jQuery(document).ready( function($) { const radioButton =$('.gfield_radio input[type=radio]'); radioButton.click(function() { radioButton.parent().removeClass('input__checked'); if( $(this).is(':checked')) { $(this).parent().addClass('input__checked'); } }); });