# 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) {
    //
});
```
