Skip to content

Instantly share code, notes, and snippets.

@geoffreydhuyvetters
Created August 5, 2015 15:41
Show Gist options
  • Save geoffreydhuyvetters/a1f3b808a8d6c412d6e7 to your computer and use it in GitHub Desktop.
Save geoffreydhuyvetters/a1f3b808a8d6c412d6e7 to your computer and use it in GitHub Desktop.
filter on dataset.
var elements = [].filter.call(
document.getElementsByTagName("*"), function(el){
for(var key in el.dataset){
if(key.indexOf('col-') === 0){
console.log(el);
return true
}
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment