Skip to content

Instantly share code, notes, and snippets.

@mAu888
Created November 27, 2018 10:21
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 mAu888/b373c6bb27a0966b270a466a3d038052 to your computer and use it in GitHub Desktop.
Save mAu888/b373c6bb27a0966b270a466a3d038052 to your computer and use it in GitHub Desktop.
// Unselect all territories
$('.mat-option.mat-selected').click()
// Select all territories that are listed in the array
$('.mat-option').filter((idx, el) => { return ["Austria"].indexOf(el.children[1].textContent) != -1 }).click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment