[GENERIC] Zend_Translate:
[zend.git] / documentation / manual / en / module_specs / Zend_View-Helpers-InlineScript.xml
blob328ca83e6388245cdcf63ad58d01fe1780fdc81f
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Reviewed: no -->
3 <sect3 id="zend.view.helpers.initial.inlinescript">
4     <title>InlineScript Helper</title>
6     <para>
7         The <acronym>HTML</acronym> <emphasis>&lt;script&gt;</emphasis> element is used to either
8         provide inline client-side scripting elements or link to a remote resource
9         containing client-side scripting code. The <classname>InlineScript</classname>
10         helper allows you to manage both. It is derived from <link
11             linkend="zend.view.helpers.initial.headscript">HeadScript</link>,
12         and any method of that helper is available; however, use the
13         <methodname>inlineScript()</methodname> method in place of
14         <methodname>headScript()</methodname>.
15     </para>
17     <note>
18         <title>Use InlineScript for HTML Body Scripts</title>
20         <para>
21             <classname>InlineScript</classname>, should be used when you wish to include
22             scripts inline in the <acronym>HTML</acronym> <emphasis>body</emphasis>. Placing scripts
23             at the end of your document is a good practice for speeding up delivery of
24             your page, particularly when using 3rd party analytics scripts.
25         </para>
27         <para>
28             Some JS libraries need to be included in the <acronym>HTML</acronym>
29             <emphasis>head</emphasis>; use <link
30                 linkend="zend.view.helpers.initial.headscript">HeadScript</link> for those scripts.
31         </para>
32     </note>
33 </sect3>
34 <!--
35 vim:se ts=4 sw=4 et:
36 -->