DEV Community

Discussion on: How to copy text to the clipboard with Javascript

Collapse
 
devmor profile image
Devmor

Hey thanks this is good. Just found a typo:

const input = el.tagName === 'input' ? ...
Enter fullscreen mode Exit fullscreen mode

'input' should be 'INPUT' because tag names are uppercase.

const input = el.tagName === 'INPUT' ? ...
Enter fullscreen mode Exit fullscreen mode

Some comments have been hidden by the post's author - find out more