Skip to content

Instantly share code, notes, and snippets.

@firestar300
Created January 15, 2019 08:50
Show Gist options
  • Save firestar300/317d8f0cb7b6764346fe02c9223db9d1 to your computer and use it in GitHub Desktop.
Save firestar300/317d8f0cb7b6764346fe02c9223db9d1 to your computer and use it in GitHub Desktop.
nextAll method with Vanilla JS
export const nextAll = element => {
const nextElements = []
let nextElement = element
while(nextElement.nextElementSibling) {
nextElements.push(nextElement.nextElementSibling)
nextElement = nextElement.nextElementSibling
}
return nextElements
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment