Nest all content into snippets
This commit is contained in:
22
snippets/js/s/supports-touch-events.md
Normal file
22
snippets/js/s/supports-touch-events.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Device supports touch events
|
||||
type: snippet
|
||||
language: javascript
|
||||
tags: [browser]
|
||||
author: chalarangelo
|
||||
cover: man-red-sunset
|
||||
dateModified: 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
|
||||
```
|
||||
Reference in New Issue
Block a user