Skip to content

Instantly share code, notes, and snippets.

@astur
Created May 25, 2015 16:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astur/7c08319a414cb456c581 to your computer and use it in GitHub Desktop.
Save astur/7c08319a414cb456c581 to your computer and use it in GitHub Desktop.
JQuery index in vanilla.js
function index(item, collection) {
return [].slice.call(document.querySelectorAll(collection)).indexOf(document.querySelector(item));
}
console.log(index('#item', '.collection'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment