Skip to content

Instantly share code, notes, and snippets.

@kobitoDevelopment
Last active June 19, 2026 12:03
Show Gist options
  • Select an option

  • Save kobitoDevelopment/7e6d3362f637722312154c60f1326fa6 to your computer and use it in GitHub Desktop.

Select an option

Save kobitoDevelopment/7e6d3362f637722312154c60f1326fa6 to your computer and use it in GitHub Desktop.
<button class="share-button" type="button" data-open-share>共有する</button>
document.querySelector("[data-open-share]").addEventListener("click", async () => {
if (!navigator.share) return;
try {
await navigator.share({
title: document.title,
url: location.href,
});
} catch (error) {
if (error.name !== "AbortError") throw error;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment