HTMLHead(text)
Last updated October 15, 2002
Version: 1 | Requires: CF6 | Library: CFMLLib
Description:
Mimics the CFHTMLHEAD tag, which writes text into the HEAD portion of the page.
Return Values:
Does not return a value.
Example:
<cfsavecontent variable="headerStuff">
<cfoutput>
<script type="text/javascript">
function msg() {
alert('Don\'t touch that.');
}
</script>
</cfoutput>
</cfsavecontent>
<cfscript>
//HTMLHead(headerStuff);
</cfscript>
Parameters:
Name | Description | Required |
---|---|---|
text | Text to insert. | Yes |
Full UDF Source:
<!---
Mimics the CFHTMLHEAD tag.
@param text Text to insert. (Required)
@return Does not return a value.
@author Kreig Zimmerman (kkz@foureyes.com)
@version 1, October 15, 2002
--->
<cffunction name="HTMLHead" output="false" returnType="void">
<cfargument name="text" type="string" required="yes">
<cfhtmlhead text="#text#">
</cffunction>
Search CFLib.org
Latest Additions
Raymond Camden added
QueryDeleteRows
November 04, 2017
Leigh added
nullPad
May 11, 2016
Raymond Camden added
stripHTML
May 10, 2016
Kevin Cotton added
date2ExcelDate
May 05, 2016
Raymond Camden added
CapFirst
April 25, 2016