Skip to content

Instantly share code, notes, and snippets.

@astur
Created May 25, 2015 16:04
Embed
What would you like to do?
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