References

Collection of references for web development.

HTML onmouseout event

Description

Execute JavaScript code when the user moves the mouse out of the element.

Example

<div style="height:100px;width:100px;border:1px solid green;" onmouseout="this.innerHTML = 'Mouse Out'">Mouse In</div>