I need a way to list the data-* attributes of an element. I would use Object.keys(element.dataset) but IE 9.0 doesn\'t have dataset s
data-*
Object.keys(element.dataset)
dataset
If you are using jQuery, you can access data-* attributes through $.data() method: http://api.jquery.com/data/