mouseenter | onmouseenter event

This topic has not yet been rated - Rate this topic

Fires when the user moves the mouse pointer into the object.

Syntax

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

Event information

SynchronousNo
BubblesNo
CancelableNo

Event handler parameters

pEvtObj [in]

Type: IHTMLEventObj

Standards information

There are no standards that apply here.

Remarks

The event fires only if the mouse pointer is outside the boundaries of the object and the user moves the mouse pointer inside the boundaries of the object. If the mouse pointer is currently inside the boundaries of the object, for the event to fire, the user must move the mouse pointer outside the boundaries of the object and then back inside the boundaries of the object.

Unlike the onmouseover event, the onmouseenter event does not bubble. In other words, the onmouseenter event does not fire when the user moves the mouse pointer over elements contained by the object, whereas onmouseover does fire.

Initiates any action associated with this event.

To invoke this event, do one of the following:

  • Move the mouse pointer inside the boundaries of an object.

See also

a
abbr
address
area
b
base
bdo
blockQuote
body
button
caption
cite
code
custom
dd
div
dl
dt
em
embed
fieldSet
form
hn
hr
html
i
img
input type=button
input type=checkbox
input type=file
input type=image
input type=password
input type=radio
input type=reset
input type=submit
input type=text
kbd
label
legend
li
map
ol
p
pre
rt
ruby
s
samp
select
small
span
strong
sub
sup
table
tBody
td
textArea
tFoot
th
tHead
tr
u
ul
var

 

 

Send comments about this topic to Microsoft

Build date: 11/29/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.