Skip to content

Instantly share code, notes, and snippets.

@cfg
Created January 28, 2016 19:30
Show Gist options
  • Save cfg/27608e77eaafa0f320cc to your computer and use it in GitHub Desktop.
Save cfg/27608e77eaafa0f320cc to your computer and use it in GitHub Desktop.
jQuery('div.permissionsType select[name$="permissions.type"]').val('some'); // some types
jQuery('div.permissionsType > ul li > select').val('some'); // set access for all types to to 'some'
jQuery('div.permissionsType > ul li').find('input[type=checkbox][value$="/write"]').prop('checked', 0); // uncheck all "Write" boxes
jQuery('div.permissionsType > ul li').find('input[type=checkbox][value$="/publish"]').prop('checked', 0); // uncheck all "Publish" boxes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment