Reference mousePressed()

mousePressed()

Calls a function when the mouse is pressed over the element.

Calling myElement.mousePressed(false) disables the function.

Note: Some mobile browsers may also trigger this event when the element receives a quick tap.

Examples

Syntax

mousePressed(fxn)

Parameters

fxn

function to call when the mouse is pressed over the element. false disables the function.

Notice any errors or typos? Please let us know. Please feel free to edit src/core/p5.Element.js and open a pull request!

Related References