This topic has not yet been rated - Rate this topic

onbeforeactivate event

[This documentation is preliminary and is subject to change.]

Fires immediately before the object is set as the IHTMLDocument2::activeElement.

Syntax

HTML Attribute <element onbeforeactivate = "handler(event)">
Event Property object.onbeforeactivate = handler;
attachEvent Method object.attachEvent("onbeforeactivate", handler)

Standards information

There are no standards that apply here.

Event information

SynchronousNo
BubblesNo
CancelableNo

Event handler parameters

pEvtObj [in]

Type: IHTMLEventObj

Remarks

Each document may have up to one active element. Set the active element with the IHTMLElement3::setActive or IHTMLElement2::focus methods. Using the IHTMLElement3::setActive method has no effect on document focus. Using the IHTMLElement2::focus method on an individual element causes the element to gain focus and become the active element.

Using the IHTMLElement2::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.

For a given display, only one element has focus at any given time. Striking a key directly affects only the element with focus. Events fired by that keystroke may be scripted to affect other documents and child elements.

With Microsoft Internet Explorer 5.5 and later, focus on a document, and the IHTMLDocument2::activeElement of a document can be managed separately. With Microsoft Internet Explorer 6 and later, use the HTMLDocumentEvents2::onbeforeactivate event to cancel setting an element as active. Canceling an element's HTMLDocumentEvents2::onbeforeactivate event has three different behaviors, depending on the action which fired the event.

  • When fired by a user clicking on the element, canceling will force the focus on the parent element and bubble up the chain until it hits a focusable element.
  • When fired by a user tabbing through the document, canceling will force the focus on the next element in the taborder. Shift-tab will force the focus on the previous element in the taborder.
  • When fired programmatically by the focus or the document.IHTMLElement3::setActive methods, canceling will have no effect.

Note  The HTMLDocumentEvents2::onbeforeactivate event cannot be canceled when fired programmatically.

Change activation from the event.fromElement to the event.srcElement.

To invoke this event, do one of the following:

  • Click an element, other than the IHTMLDocument2::activeElement element of the document.
  • Use the keyboard to move focus from the active element to another element.
  • Invoke the IHTMLElement3::setActive method on an element, when the element is not the active element.
  • Invoke the IHTMLElement2::focus method on an element, when the element is not the active element.

The pEvtObj parameter is required for the following interfaces:

  • HTMLFrameSiteEvents2
  • HTMLElementEvents
  • HTMLElementEvents2
  • HTMLLinkElementEvents
  • HTMLLinkElementEvents2
  • HTMLFormElementEvents
  • HTMLFormElementEvents2
  • HTMLImgEvents
  • HTMLImgEvents2
  • HTMLTextContainerEvents
  • HTMLTextContainerEvents2
  • HTMLAnchorEvents2
  • HTMLLabelEvents
  • HTMLLabelEvents2
  • HTMLSelectElementEvents
  • HTMLSelectElementEvents2
  • HTMLInputTextElementEvents
  • HTMLInputTextElementEvents2
  • HTMLOptionButtonElementEvents
  • HTMLOptionButtonElementEvents2
  • HTMLButtonElementEvents
  • HTMLButtonElementEvents2
  • HTMLMarqueeElementEvents
  • HTMLMarqueeElementEvents2
  • HTMLControlElementEvents
  • HTMLControlElementEvents2
  • HTMLMapEvents
  • HTMLMapEvents2
  • HTMLAreaEvents
  • HTMLAreaEvents2
  • HTMLTableEvents
  • HTMLTableEvents2
  • HTMLScriptEvents
  • HTMLScriptEvents2
  • HTMLStyleElementEvents
  • HTMLStyleElementEvents2
  • HTMLInputFileElementEvents
  • HTMLInputFileElementEvents2
  • HTMLInputImageEvents
  • HTMLInputImageEvents2
  • HTMLDocumentEvents

See also

Reference
HTMLFrameSiteEvents::onactivate
HTMLFrameSiteEvents::onbeforedeactivate
HTMLFrameSiteEvents::ondeactivate
HTMLDocumentEvents2::onfocusin
HTMLDocumentEvents2::onfocusout

 

 

Build date: 3/8/2012

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ