.catalog__item{ display: none; }
.catalog__item:nth_child(1),
.catalog__item:nth_child(2),
.catalog__item:nth_child(3){
display: block;
}
<button class="show-all">Показать</button>
$('.show-all').on('click', function(){
$('.catalog_item').css('display', 'block');
})
function send(x)
{
$.ajax({
url: '/index.php/comments/'+x,
async: false,
success: function(json){
var data = jQuery.parseJSON(json);
$('#ajax_comment').append( data.three_comments[1].id );
console.log(json);
}
});
}
var a = [1294,1296,1297,1298,1299];
for (var i=0; i<a.length; i++) {
send(a[i]);
}
console.log('Метод: '+method);
switch (method) {
case "pickup":
console.log('Pickup choosen: ', el);
break;
case "delivery":
console.log('Delivery choosen: ', command[method]);
break;
default:
break;
}