Tag Definitions %TITLEATT%
Sets and Displays the Title Attribute of a link in manual lists.
The TITLEATT (Title Attribute) tag is used in conjunction with a manual list to assign a unique 'title' attribute to a list item or anchor. This 'title' attribute for links, images, or list items is often used to show a 'tooltip' when a user hovers over the item.
This tag has no attributes.
Example
In this example a title attribute is applied to a list item, which will be drawn from the attributes set in the content editor of a manual list:
<li><a href="\index.html" title="%TITLEATT%">Home</a></li>
RENDERED OUTPUT:
<li><a href="page1.html" title="This is Page 1">Page 1</a></li>
<li><a href="page2.html" title="This is Page 2">Page 2</a></li>
<li><a href="page3.html" title="This is Page 3">Page 3</a></li>