dean.edwards.name/my/behaviors/

To enable these behaviors on Mozilla platforms use the XBL wrapper moz-behaviors.xml.

Does your browser support DHTML Behaviors? Here is a simple test.

star-light.htc

A DHTML Behavior that dynamically applies syntax highlighting to source listings (contained in a <pre/> tag for example). The syntax highlighter is fully configurable and modules exist for the following languages:

*Written by Rob Eberhardt

favatar.htc

For WordPress weblogs. Attaches a favicon to user comments. Take a look at the comments on my weblog for examples.

ie-namespaces.htc

Please note that this behavior will be superseded by IE7.

A DHTML Behavior that allows Microsoft Internet Explorer to use basic CSS Namespaces. Explorer, Mozilla and Opera may then reference the same XML style sheet.

This behavior also fixes Explorer’s incorrect margins for XML documents.

Before:

@namespace my url(http://dean.edwards.name/space);

/* css namespaces style */
my|red-tag {
	background: red;
}

[id=menu] {
	color: white;
}

my|red-tag[class=title] {
	font-weight: bold;
}

/* explorer style */
my\:red-tag {
	background: red;
}

#menu {
	color: white;
}

my\:red-tag.title {
	font-weight: bold;
}

After:

@namespace my url(http://dean.edwards.name/space);

/* include explorer support */
my\:root {
	behavior: url(ie-namespaces.htc);
}

/* css namespaces style */
my|red-tag {
	background: red;
}

[id=menu] {
	color: white;
}

my|red-tag[class=title] {
	font-weight: bold;
}

js-highlight.htc

This has been replaced by star-light.htc.