Admin_View_Helper_JQueryReady::jQueryReady PHP Метод

jQueryReady() публичный Метод

This helper add a document.ready script type for jquery Retrieve placeholder for title element and optionally add new script
public jQueryReady ( string $script = null ) : Admin_View_Helper_JQueryReady
$script string
Результат Admin_View_Helper_JQueryReady
    public function jQueryReady($script = null)
    {
        if (is_string($script)) {
            $this->append($script);
        }
        return $this;
    }
Admin_View_Helper_JQueryReady