Skip to content

Instantly share code, notes, and snippets.

View robbyoconnor's full-sized avatar
🏳️‍🌈
🙃 🙂 (=

Robby O'Connor robbyoconnor

🏳️‍🌈
🙃 🙂 (=
View GitHub Profile
$('.q-item').each(function(index, entry){
var item = $(entry).find('.form-field-body').find('ul').children().get(1);
if($(item).text().includes("Disapprove")){
$(item).find('input').prop('checked', true);
}
});