I am familiar of how to get ajax to go to a php page an execute a series of things and then return json data. However is it possible to call a specific function which reside
You can't call a PHP function directly from an AJAX call, but you can do this:
php function test($data){ return $data+1; } if (isset($_POST['callFunc1'])) { echo test($_POST['callFunc1']); } ?>