Skip to content

Instantly share code, notes, and snippets.

@6ui11em
Created September 4, 2018 20:17
Show Gist options
  • Save 6ui11em/1c33aa64446c5d824e45cab63acc08ed to your computer and use it in GitHub Desktop.
Save 6ui11em/1c33aa64446c5d824e45cab63acc08ed to your computer and use it in GitHub Desktop.
Javascript get siblings og an element #javascript #vanilla #sibilings
var item = document.querySelector('#find-me');
var prev = item.previousElementSibling;
var next = item.nextElementSibling;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment