This document can be freely used and copied under the Creative Commons CC BY-SA License:
https://creativecommons.org/licenses/by-sa/4.0/
Peter Handrich
Mail: netz(at)l4a.org
Address:
Große Straße 52
27449 Rotenburg an der Wümme
Germany
This website does not track anybody.
This website does not collect any data of its visitors - it does not even count them.
This website does not send any cookies to Your webbrowser.
This website uses exactly one snippet of JavaScript to send the content of a listing to Your clipboard -
and will work with JavaScript switched off (with the except of the copy function). This is it:
<p>
<button id="copyTextBtn1">Copy</button>
<textarea id="cookies" cols="100" rows="2">
Content of the textarea/listing
</textarea>
</p>
<script>
copyTextBtn1 = document.querySelector('#copyTextBtn1');
copyTextBtn1.addEventListener('click', function(event) {
let copyTextarea = document.querySelector('#cookies');
copyTextarea.focus();
copyTextarea.select();
try {
let successful = document.execCommand('copy');
let msg = successful ? 'was successful.' : 'was NOT successful.';
alert('Copying to the clipboard ' + msg);
} catch(err) {
alert('Error copying');
}
});
</script>