html
The method html acts a lot like the library function html, however it adds the created html element
directly to this androHtml element, specifying that this androHtml element is the parent element.
string $tag - Name of html tag.
mixed $innerHml - Innerhtml for the created html element.
string $class - Css class for the html element.
function html($tag,$innerHTML='',$class='') {
$x = html($tag,$this,$innerHTML);
if($class<>'') $x->addClass($class);
return $x;
}