I have this json
"urls": {
"title1": {
"url": "someurl1"
},
"title12": {
"url": "someurl2"
}
}
I want get title and value of url out in an element for each. Something like this
$.each(value.urls, function (key, value) {
$('.log-list-js').append('<a href="'+ title +'">'+ someurl +'</a>');
});
Hope it makes sense.
Can you help me ?