Retrieves an object from the behaviorUrns collection.
Remarks
A behavior can specify a unique identifier in the form of a URN. If no URN is specified for a behavior, an empty string is specified in the collection. If no behaviors are attached to the element, an empty collection is returned.
Example
This example demonstrates how to determine the behaviors attached to a div.
<HEAD>
<STYLE>
DIV { behavior:url(fly.htc) url (zoom.htc) url (fade.htc)}
</STYLE>
function window.onload()
{
oColl = oDiv.behaviorUrns;
if (oColl != null)
{
for (i=0; i < oColl.length; i++)
alert (oColl(i));
}
}
</HEAD>
<DIV ID=oDiv>I just want to fly</DIV>
Standards Information
There is no public standard that applies to this collection.