Jump to content

HTML Components

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 122.52.14.204 (talk) at 05:33, 14 September 2012 (Example). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

HTML Components (HTCs) are a nonstandard mechanism to implement components in script as Dynamic HTML (DHTML) "behaviors"[1] in the Microsoft Internet Explorer web browser. Such files typically use an .htc extension and the "text/x-component" MIME type[2].

An HTC is typically an HTML file (with JScript / VBScript) and a set of elements that define the component. This helps to organize behavior encapsulated script modules that can be attached to parts of a Webpage DOM.

Example

<body>
<ul>
  <li style="behavior:url(hilite.htc)">Foo Foo Foo</li>
</ul>
</body>

In this example, the li element is given the behavior defined by "hilite.htc" (a file that contains JScript code defining highlight/lowlight actions on mouse over). The same hilite.htc can then be given to any element in the HTML page - thus encapsulating the behavior defined by this file.

References