Skip to content

Instantly share code, notes, and snippets.

@BrocksiNet
Created December 5, 2024 08:50
Show Gist options
  • Save BrocksiNet/e6e9ad35fa8ceaf30818957b1318dece to your computer and use it in GitHub Desktop.
Save BrocksiNet/e6e9ad35fa8ceaf30818957b1318dece to your computer and use it in GitHub Desktop.
shareButton with Web Share API
document.addEventListener('DOMContentLoaded', () => {
const entryElement = document.querySelector('.entry');
if (navigator.canShare && entryElement) {
const shareButton = document.createElement('button');
shareButton.textContent = 'Share this article';
shareButton.onclick = async () => {
try {
await navigator.share({
url: location.href,
title: document.title
});
} catch (error) {
console.error('Error sharing:', error);
}
};
entryElement.appendChild(shareButton);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment