$('form input[type="radio"][value="5"]').prop('checked', true); $('form input[type="radio"][value="5"]').each(function(index, item){ var random = Math.floor(Math.random()*5+1); // console.log(random); $(this).parent().find('input[type="radio"][value="' + random + '"]').prop('checked', true); });