Sets or retrieves the x-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
Sets or retrieves the y-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
Sets or retrieves the y-coordinate, in pixels, of the mouse pointer's position relative to a relatively positioned parent element.
Remarks
Note Using the setActive method has no effect on document focus. Using the focus method on an individual element causes the element to gain focus and become the active element.
When one object loses activation and another object becomes the activeElement, the onfocus event fires on the object becoming the activeElement only after the onblur event fires on the object losing activation.
Each document may have up to one active element. Set the active element with the setActive or focus methods.
Using the focus method on a document that does not have the focus moves the document to the front of the display. Additionally, the document's active element gains focus.
The onactivate event fires before the onload event for any of the objects listed in the Applies To section.
For Microsoft® Internet Explorer 5.5 and later, focus on a document, and the active element of a document can be managed separately. Use the onactivate event to manage formatting changes when an element is made active.
For Internet Explorer 6 and later, the event.fromElement property is now exposed by this event.
Example
The following example demonstrates the order of event firing for the onactivate and onload events. As each event fires, it appends a string to the div element within the document. The onactivate event fires before the onload event.
<HTML>
<HEAD>
<SCRIPT>
function fnActivate(){
oDIV1.innerHTML += "<BR><BR>The <B>onactivate</B> event, available as of \
Internet Explorer 5.5, fires first on the BODY element.";
}
function fnLoad(){
oDIV1.innerHTML += "<BR><BR>The <B>onload</B> event, available as of \
Internet Explorer 4.0, fires after the <i>onactivate</i> event fires \
on the BODY element.";
}
</SCRIPT>
</HEAD>
<BODY onactivate="fnActivate();" onload="fnLoad();">
<DIV id="oDIV1"></DIV>
</BODY>
</HTML>
This feature requires Microsoft® Internet Explorer 5.5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.
Standards Information
There is no public standard that applies to this event.