Skip to content

Instantly share code, notes, and snippets.

@bran921007
Created March 16, 2022 18:25
Show Gist options
  • Save bran921007/3db5c058322258af5e71d60cf87c2032 to your computer and use it in GitHub Desktop.
Save bran921007/3db5c058322258af5e71d60cf87c2032 to your computer and use it in GitHub Desktop.
๐—–๐—ผ๐—ฝ๐˜† ๐˜๐—ผ ๐—–๐—น๐—ถ๐—ฝ๐—ฏ๐—ผ๐—ฎ๐—ฟ๐—ฑ ๐—ฏ๐˜‚๐˜๐˜๐—ผ๐—ป
const copyBtn = document.getElementById('copy-btn');
const search = document.getElementById('search-box');
copyBtn.addEventListener('click', () => {
navigator.clipboard.writeText(search.value);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment