Generally in AJAX request no need of load CSS, JS. Also omitting other HTML code.
Make ajax.ctp file in /src/Template/Layout, and code should be
<?php
$this->fetch('content');
Set AJAX based layout for entire application, in AppsController.php
class AppsController extends Controlle...