JSFiddle - React, Tailwind, and code Playground
by painotpi
HTML
<ul class="inboxList">
<li data-selecttype='global|mailbox|inbox'>Inbox</li>
</ul>
JavaScript
$(".inboxList").children().each(function(){
console.log($(this).data("selecttype"));
});