How to check an Ajax request in cakephp?

udhaya picture udhaya · Jan 22, 2010 · Viewed 25.3k times · Source

How to check an Ajax request in cakephp?

Answer

darensipes picture darensipes · Jul 28, 2012

Depends on the version of cake.

1.3.x:

$this->RequestHandler->isAjax();

2.x || 3.x

$this->request->is('ajax');