Skip to content

Instantly share code, notes, and snippets.

@planetoftheweb
Last active May 13, 2020 20:09
Show Gist options
  • Save planetoftheweb/ae70a14350560f303c019f82f9b36baf to your computer and use it in GitHub Desktop.
Save planetoftheweb/ae70a14350560f303c019f82f9b36baf to your computer and use it in GitHub Desktop.

Basic

$$('img') //select all images
$$('.page-section')[0].style // look at the styles for elements with page-section class

Get All Links on a Page

let elements = $$('a');
 for (thing in elements) {
     console.log(elements[thing].href);
 }

Modify Node List Styles

let elements = $$('img');
for (thing in elements) {
    elements[thing].style='border: 3px solid red'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment