Skip to content

Instantly share code, notes, and snippets.

View hgezim's full-sized avatar

Gezim Hoxha hgezim

View GitHub Profile
function bufferShare() {
const url = encodeURIComponent(window.location.href);
const title = encodeURIComponent(window.document.title);
const bufferUrl = `https://buffer.com/add?url=${url}&text=${title}`;
window.open(bufferUrl);
}
bufferShare();