Spaces:
Runtime error
Runtime error
<html> | |
<head> | |
<style> | |
textarea { | |
width: 100%; | |
height: 200px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Clipboard Monitor</h1> | |
<p>Paste your data in the textarea below:</p> | |
<textarea id="clipboard-text" oninput="updateClipboard()"></textarea> | |
<script> | |
function updateClipboard() { | |
let textArea = document.getElementById("clipboard-text"); | |
let clipboardData = textArea.value; | |
window.parent.postMessage({type: "clipboard-update", data: clipboardData}, "*"); | |
} | |
</script> | |
</body> | |
</html> | |