Skip to content

Instantly share code, notes, and snippets.

@bbelderbos
Created June 17, 2025 09:41
Show Gist options
  • Save bbelderbos/8fc767392307da71fb041ad32edcfd4f to your computer and use it in GitHub Desktop.
Save bbelderbos/8fc767392307da71fb041ad32edcfd4f to your computer and use it in GitHub Desktop.
function copyToClipboard(editorInstance) {
const code = editorInstance.getValue();
navigator.clipboard.writeText(code).then(() => {
alert('Code copied to clipboard!');
}).catch(err => {
console.error('Failed to copy: ', err);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment