JSFiddle - React, Tailwind, and code Playground
HTML
<div id="foo" data-foo:bar="17"></div>
JavaScript
var foo = $('#foo'),
bar = foo.data();
foo.after(JSON.stringify(bar));
/*
would be nice if the result was:
{
"foo":{
"bar": 17
}
}
*/