Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jmlavoier/bd6936943ff623b6d92c46f243ff20f0 to your computer and use it in GitHub Desktop.
Save jmlavoier/bd6936943ff623b6d92c46f243ff20f0 to your computer and use it in GitHub Desktop.
const p = document.querySelector('.p2');
console.log(p.previousElementSibling); // <p class="p1">Paragrafo 1</p>
console.log(p.nextElementSibling); // <p class="p3">...</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment