jquery mouseout() method
Translation results:
mouse
English [maʊs] American [maʊs]
n. Mouse; mouse; shy [timid] person; [informal term] eye bruises on the head
vi.catching mice; spying, secretly searching
out
英[aʊt] 美[aʊt]
adv.Out; outside, outside; completely, thoroughly; published
prep. (indicates the source) from; (from...) to come out; (indicates not in the original state) to break away; leave
vt. To extinguish; to expose; to expel
adj. Outside; out; to step down; peripheral
n. Not popular; out
jquery mouseout() methodsyntax
Function:When the mouse pointer moves away from the element, the mouseout event occurs. This event is most often used together with the mouseover event. The mouseout() method triggers a mouseout event, or specifies a function to run when a mouseout event occurs. Unlike the mouseleave event, the mouseout event is triggered whether the mouse pointer leaves the selected element or any child element. The mouseleave event is only fired when the mouse pointer leaves the selected element. See the example below for a demonstration.
Trigger the mouseout event syntax: $(selector).mouseout(
Bind the function to the mouseout event syntax: $( selector).mouseout(function)
Parameters:
Description | |
Optional. Specifies the function to be run when a mouseout event occurs. |