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