> For the complete documentation index, see [llms.txt](https://mobius-studios.gitbook.io/selectable/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mobius-studios.gitbook.io/selectable/api/events/start.md).

# start

Fires on `mousedown` / `touchstart`.

***

The callback has two parameters which returns the orignal event and a reference to the first item found under the mouse pointer / finger / stylus.

```javascript
selectable.on("start", function(e, item) {
    //
});
```
