Skip to content

Instantly share code, notes, and snippets.

@torifat
Created February 26, 2018 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save torifat/08bc45b3e8f7b68e371fb89cf40d2d60 to your computer and use it in GitHub Desktop.
Save torifat/08bc45b3e8f7b68e371fb89cf40d2d60 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/liqaqem
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
document.addEventListener('paste', e => {
console.log(e.clipboardData.getData('text/html'));
});
</script>
<script id="jsbin-source-javascript" type="text/javascript">document.addEventListener('paste', e => {
console.log(e.clipboardData.getData('text/html'));
});
</script></body>
</html>
document.addEventListener('paste', e => {
console.log(e.clipboardData.getData('text/html'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment