Redaxscript\Html\HtmlAbstract::prepend PHP Method

prepend() public method

prepend to the html
Since: 2.6.0
public prepend ( string $html = null ) : Element
$html string html to prepend
return Element
    public function prepend($html = null)
    {
        $this->_html = $html . $this->_html;
        return $this;
    }