$.getJSON(
"db.php",
{ func: "GetFullInfo", id: CurId },
success: function( data )
{
// здесь data уже распарсенный json
}
);
$('#listClients').on(
'click',
'button',
function(){
event.preventDefault();
console.log('1');
}
);