Jump to content

HTML Components

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 202.78.251.134 (talk) at 12:44, 16 February 2010. 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 a .htc extension.

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

==Example==

Block quote

<BODY>
<UL>
  <LI STYLE="behavior:url(hilite.htc)">Foo Foo Foo</LI>
</UL>
</BODY>

Subscript textelement in the HTML page - thus encapsulating the behavior defined by this file.

References