JSFiddle - React, Tailwind, and code Playground
by Reiot
HTML
<div id="hello" data-name="world"></div>
JavaScript
$(function() {
alert($('#hello').data('name'));
});
by Reiot
<div id="hello" data-name="world"></div>
$(function() {
alert($('#hello').data('name'));
});