Files
30-seconds-of-code/snippets/supportsTouchEvents.md
Angelos Chalaris 8a6b73bd0c Update covers
2023-02-16 22:24:28 +02:00

22 lines
394 B
Markdown

---
title: Device supports touch events
tags: browser
author: chalarangelo
cover: man-red-sunset
firstSeen: 2020-05-04T12:57:23+03:00
lastUpdated: 2020-10-22T20:24:30+03:00
---
Checks if touch events are supported.
- Check if `'ontouchstart'` exists in the `Window`.
```js
const supportsTouchEvents = () =>
window && 'ontouchstart' in window;
```
```js
supportsTouchEvents(); // true
```