API15

API15:JHTML/script

From Joomla! Documentation

Revision as of 22:18, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Write a <script></script> element <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Write a <script></script> element

[Edit Descripton]

Template:Description:JHTML/script

Syntax

script($filename, $path= 'media/system/js/', $mootools=true)
Parameter Name Default Value Description
$filename The name of the script file *
$path 'media/system/js/' The relative or absolute path of the script file
$mootools true If true, the mootools library will be loaded

Defined in

libraries/joomla/html/html.php

Importing

jimport( 'joomla.html.html' );

Source Body

function script($filename, $path = 'media/system/js/', $mootools = true)
{
        // Include mootools framework
        if($mootools) {
                JHTML::_('behavior.mootools');
        }

        if(strpos($path, 'http') !== 0) {
                $path =  JURI::root(true).'/'.$path;
        };

        $document = &JFactory::getDocument();
        $document->addScript( $path.$filename );
        return;
}

[Edit See Also] Template:SeeAlso:JHTML/script

Examples

<CodeExamplesForm />