| 123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <sect3 id="zend.view.helpers.initial.inlinescript">
- <title>InlineScript Helper</title>
- <para>
- The HTML <code><script></code> element is used to either provide
- inline client-side scripting elements or link to a remote resource
- containing client-side scripting code. The <code>InlineScript</code>
- helper allows you to manage both. It is derived from <link
- linkend="zend.view.helpers.initial.headscript">HeadScript</link>,
- and any method of that helper is available; however, use the
- <code>inlineScript()</code> method in place of
- <code>headScript()</code>.
- </para>
- <note>
- <title>Use InlineScript for HTML Body Scripts</title>
- <para>
- <code>InlineScript</code>, should be used when you wish to include
- scripts inline in the HTML <code>body</code>. Placing scripts at the
- end of your document is a good practice for speeding up delivery of
- your page, particularly when using 3rd party analytics scripts.
- </para>
- <para>
- Some JS libraries need to be included in the HTML <code>head</code>;
- use <link linkend="zend.view.helpers.initial.headscript">HeadScript</link>
- for those scripts.
- </para>
- </note>
- </sect3>
- <!--
- vim:se ts=4 sw=4 et:
- -->
|