(function ($) { $(document).ready(function () { setTimeout( function() { // Elementor radio error message fix $('input:radio').each(function () { var $this = $(this), name = $this.attr('name'); newId = name.replace('form_fields[', ''); newId = 'form-field-' + newId.replace(']', ''); $this.parent().attr('id', newId); }); }, 1000 ); }); })(jQuery);