Skip to content

Instantly share code, notes, and snippets.

@edinsoncs
Created March 17, 2016 20:29
Show Gist options
  • Select an option

  • Save edinsoncs/33361c558f79950bc9bf to your computer and use it in GitHub Desktop.

Select an option

Save edinsoncs/33361c558f79950bc9bf to your computer and use it in GitHub Desktop.
function itemsDom(item, tag) {
var capture = document.getElementsByTagName(tag);
var item = capture.item(item);
if(item != 2) {
return item
}
else {
console.log(item);
}
}
itemsDom(1, 'li');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment