References

Collection of references for web development.

HTML onmouseup event

Description

Execute JavaScript code when the user releases the mouse button on the element.

Example

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