Skip to content

Instantly share code, notes, and snippets.

@drakvuf
Created May 8, 2016 18:53
Show Gist options
  • Save drakvuf/5a36f1163bf6b9923f1fcfcdbdbf6a72 to your computer and use it in GitHub Desktop.
Save drakvuf/5a36f1163bf6b9923f1fcfcdbdbf6a72 to your computer and use it in GitHub Desktop.
//elemek kiválasztása
var el = querySelectorAll('.elements');
//első elem
var firstEl = el[0];
//utolsó elem
var lastEl = el[el.length - 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment