28.01.2021, 09:36
You need grp.listen in any case but you can access the address that is mapped to each element with a certain class like this:
Code:
$(function(){
$('.my_custom_class').each(function(_, el) {
var addr = $(el).data('object');
if (addr) {
log(addr);
}
});
});