Skip to content

Instantly share code, notes, and snippets.

@TristanWiley
Created March 22, 2017 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save TristanWiley/1f5ad1358af77e002a9e41a7c3794246 to your computer and use it in GitHub Desktop.
Save TristanWiley/1f5ad1358af77e002a9e41a7c3794246 to your computer and use it in GitHub Desktop.
$('.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);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment