saper333,
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
div {
border: 1px solid;
}
</style>
<title>Document</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
</head>
<body>
<div>
<div class="c">1</div>
</div>
<div>
<div class="c">1</div>
</div>
<div>
<div class="c">1</div>
</div>
<script>
$(document).ready(function() {
$(".c").each(function(c, a) {
var b = $('<div/>', {html: 'идёт загрузка','class':'j'}),h;
$(a).click(function() {
!h && $.ajax('https://api.vkontakte.ru/method/wall.get?domain=adme')
.then(function(result){
h = JSON.stringify(result);
b.html(h)
});
$(a).nextAll(".j").length ? b.remove() : b.insertAfter(a)
})
})
});
</script>
</body>
</html>