JSFiddle - React, Tailwind, and code Playground
by fiddleyetu
HTML
<div class="myEvent"
data-scheduledOn="1399985100000"
data-eventStatus="3"></div>
<div class="myEvent"
data-scheduledOn="1399985100555"
data-eventStatus="2"></div>
JavaScript
$('div.myEvent').each(function(index, divItem) {
console.log($(divItem).data("scheduledon"));
console.log( $(divItem).data("eventstatus") );
});