Skip to content

Instantly share code, notes, and snippets.

View CalvinAllen's full-sized avatar

Calvin A. Allen CalvinAllen

View GitHub Profile
javascript: (function() {
function copyToClipboard(text) {
if (window.clipboardData && window.clipboardData.setData) {
return clipboardData.setData("Text", text);
} else if (
document.queryCommandSupported &&
document.queryCommandSupported("copy")
) {
var textarea = document.createElement("textarea");
textarea.textContent = text;