API15:JHTML/script
From Joomla! Documentation
Description
Write a <script></script> element
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples