Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. navigator.clipboard.readText()
  2. .then(texto => {
  3. console.log("Aquí tenemos el texto: ", texto);
  4. })
  5. .catch(error => {
  6. // Por si el usuario no da permiso u ocurre un error
  7. console.log("Hubo un error: ", error);
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement