<?php
class ClassC
{
public function methodCa()
{
$xResponse = jaxon()->getResponse();
$xResponse->html('div', 'This is the div content!!');
}
public function methodCb()
{
$xResponse = jaxon()->getResponse();
$xResponse->html('div', 'This is the div content!!');
}
public function methodCc()
{
$xResponse = jaxon()->getResponse();
$xResponse->html('div', 'This is the div content!!');
}
}
|