Skip to content

Instantly share code, notes, and snippets.

@robbyoconnor
Forked from TristanWiley/gop.js
Created March 22, 2017 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robbyoconnor/e3272f6d789b98054757f8df02a03320 to your computer and use it in GitHub Desktop.
Save robbyoconnor/e3272f6d789b98054757f8df02a03320 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