Skip to content

Instantly share code, notes, and snippets.

View fkx2016's full-sized avatar

Frank Kurka fkx2016

View GitHub Profile
@fkx2016
fkx2016 / titleUrlMarkdownClip.js
Created October 6, 2023 22:04 — forked from idelem/titleUrlMarkdownClip.js
Bookmarklet to copy current page title and url in Markdown format to clipboard, like [title](url) - Usual for posting links to resources in README.md files
javascript:(function() {
function copyToClipboard(text) {
if (window.clipboardData && window.clipboardData.setData) {
/*IE specific code path to prevent textarea being shown while dialog is visible.*/
return clipboardData.setData("Text", text);
} else if (document.queryCommandSupported && document.queryCommandSupported("copy")) {
var textarea = document.createElement("textarea");
textarea.textContent = text;