var book = {
author__1: {
name: 'John',
surname: 'Smith'
},
author__2: {
name: 'John',
surname: 'Smith'
}
};
var max = Object.keys(book).length;
for (var i = 1; i <= max; i++) {
console.log(book['author__' + i].name);
}
jQuery(function ($) {
$('#button').on('click', function() {
$('.popup').text($(this).attr('title'));
});
});
document.getElementById('button').onclick = function() {
var elements = document.getElementsByClassName('popup');
for(var index in elements) {
elements[index].innerText = this.title;
}
}
полностью набросать код вручную и потом интегрировать его в тему wordpress