Created
August 5, 2015 15:41
-
-
Save geoffreydhuyvetters/a1f3b808a8d6c412d6e7 to your computer and use it in GitHub Desktop.
filter on dataset.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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