Skip to content

Instantly share code, notes, and snippets.

@mirojones
Created October 2, 2024 06:01
Show Gist options
  • Save mirojones/e0c1b51c179b7fd236c0b46b1452ae68 to your computer and use it in GitHub Desktop.
Save mirojones/e0c1b51c179b7fd236c0b46b1452ae68 to your computer and use it in GitHub Desktop.
Simple JavaScript share button using navigation.share
<button id="shareBtn">Share</button>
document.getElementById('shareBtn').addEventListener("click", async () => {
var shareData = {
title: document.title,
url: window.location.href
}
try {
await navigator.share(shareData);
console.log("Data was shared successfully");
} catch (err) {
console.error("error:", err.message);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment