<cfhtmlhead>
Writes the text specified in the text attribute to the 'head' section of a generated HTML page.
The cfhtmlhead tag can be useful for embedding JavaScript code, or placing other HTML tags such, as META, LINK, TITLE, or BASE in an HTML page header.
This tag may have a body.
This tag is also supported within <cfscript>
<cfhtmlhead
text=string
force=boolean
variable=string
id=string
action=append|read|reset|write
><!--- body --->[</cfhtmlhead>]
| Attribute | Description | Default |
|---|---|---|
text
string, optional
|
edit
The text to add to the 'head' area of an HTML page. Everything inside the quotation marks is placed in the 'head' section |
|
force
boolean, optional
|
edit
if set to true, it works even within a silent block |
|
variable
string, optional
|
edit
Name of variable to contain the text for htmlhead. |
|
id
string, optional
|
edit
ID of the snippet that is added, used to ensure that the same snippet will not be added more than once. |
|
action
string, optional
|
edit
possible actions are:
|
append |
Examples
editSimple Example
<cfhtmlhead text="_Read_Action"><cfhtmlhead action="read" variable="res"><br><cfoutput>#res#</cfoutput>
<cfhtmlhead action="write">Started_Write_action</cfhtmlhead><cfhtmlhead action="write">Ended_Write_action</cfhtmlhead>
See also
- WriteOutput()
- <cfcontent>
- <cfheader>
- <cfhtmlbody>
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)