onfocusin event

Fires for an element just prior to setting focus on that element.

Syntax

HTML Attribute <element onfocusin = "handler(event)">
Event Property object.onfocusin = handler;
attachEvent Method object.attachEvent("onfocusin", handler)
addEventListener Method object.addEventListener("focusin", handler, useCapture)

 

Event information

Synchronous No
Bubbles Yes
Cancelable No

 

Event handler parameters

Standards information

There are no standards that apply here.

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, and this causes HTMLInputTextElementEvents2::onfocusin to fire for this 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, and this causes HTMLInputTextElementEvents2::onfocusin to fire for this active element.

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. Use the HTMLInputTextElementEvents2::onfocusin event to manage formatting changes when an element gains focus.

Change focus from the event.IHTMLEventObj::srcElement to the event.IHTMLEventObj::toElement.

To invoke this event, do one of the following:

  • Click a document, when the document does not have focus.
  • Click an element, when the element does not have focus.
  • Use the keyboard to move focus from the active element to another element.
  • Invoke the IHTMLElement2::focus method on an element, when the element is not the active element.

See also

Reference

HTMLInputTextElementEvents2::onfocusout

HTMLInputTextElementEvents2::onbeforedeactivate

HTMLInputTextElementEvents2::ondeactivate

HTMLInputTextElementEvents2::onbeforeactivate

HTMLInputTextElementEvents2::onactivate