References

Collection of references for web development.

HTML onmouseover event

Description

Execute JavaScript code when the user moves the mouse over the element.

Example

<div style="height:100px;width:100px;border:1px solid green;" onmouseover="this.style.backgroundColor = 'orange'"></div>