Skip to content

Instantly share code, notes, and snippets.

@drakvuf
Created May 8, 2016 18:51
Show Gist options
  • Save drakvuf/5e3527cc35e99710c55cf432d6e07998 to your computer and use it in GitHub Desktop.
Save drakvuf/5e3527cc35e99710c55cf432d6e07998 to your computer and use it in GitHub Desktop.
var el = document.querySelector('.element');
//előző elem -> textnode-al térhet vissza!
var prevEl = el.previousSibling;
//előző elem meglepetések nélkül
var prevEl = el.previousElementSibling;
//előző elem -> textnode-al térhet vissza!
var nextEl = el.nextSibling;
//következő elem meglepetések nélkül
var nextEl = el.nextElementSibling;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment