JSFiddle - React, Tailwind, and code Playground
by Dwza
HTML
<dic class="test" data-foo="some"></dic>
JavaScript
var x = $('.test').data("foo");
if(x !== undefined){
alert(x);
}
by Dwza
<dic class="test" data-foo="some"></dic>
var x = $('.test').data("foo");
if(x !== undefined){
alert(x);
}