jQuery(document).ready(function($){
var divsConEventID=$('div[id="elemento_lista_evento"]');
divsConEventID.each(function(){
var campoNascosto=$(this).find('input[type="hidden"][id="em_id_post"]');
var location=$(this).find('span#em-next-location');
var data=$(this).find('span#em-next-date');
var hours=$(this).find('span#em-next-start');
set_next_location(campoNascosto, location, data, hours);
});
function set_next_location(source, location, data, hours){
if(!source.length){
return;
}
var nextLocation=source.data('em-next-location')||'';
var nextDate=source.data('em-next-date')||'';
var nextStart=source.data('em-next-start')||'';
if(nextLocation){
location.text(nextLocation);
}
if(nextDate){
data.text(nextDate);
}
if(nextStart){
hours.text(nextStart);
}}
});