cfhtmlhead

Writes text to the head section of a generated HTML page. It is
useful for embedding JavaScript code, or putting other HTML
tags, such as meta, link, title, or base in an HTML page
header.

  <cfhtmlhead text="">

 cfhtmlhead() {}

Attribute Reference

text string

Text to add to the head area of an HTML page. In Lucee a closing tag can be used and then the body between the tags is added to the head

Compatibility

Lucee:

Lucee supports omitting the parenthesis in script syntax

Examples
Sample code using the cfhtmlhead tag

<cfhtmlhead text='<link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" />'>

cfhtmlhead( text='<link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" />');

Lucee 4.2+

htmlhead text='<link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" />';

Lucee tag wrap

<cfhtmlhead><link href="/news.xml" rel="alternate" type="application/rss+xml" title="Latest News" /></cfhtmlhead>

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub