API15:JDocument/addScriptDeclaration
From Joomla! Documentation
Description
Adds a script to the page
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
addScriptDeclaration($content, $type= 'text/javascript')
| Parameter Name | Default Value | Description |
|---|---|---|
| $content | $content Script | |
| $type | 'text/javascript' | $type Scripting mime (defaults to 'text/javascript') |
Returns
void
Defined in
libraries/joomla/document/document.php
Importing
jimport( 'joomla.document.document' );
Source Body
function addScriptDeclaration($content, $type = 'text/javascript')
{
if (!isset($this->_script[strtolower($type)])) {
$this->_script[strtolower($type)] = $content;
} else {
$this->_script[strtolower($type)] .= chr(13).$content;
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples