Skip to content

Instantly share code, notes, and snippets.

@omar2205
Created October 21, 2022 18:52
Show Gist options
  • Save omar2205/6b06fc079eb1f7aedf54200a6760b285 to your computer and use it in GitHub Desktop.
Save omar2205/6b06fc079eb1f7aedf54200a6760b285 to your computer and use it in GitHub Desktop.
navigator share API
const shareData = {
title: 'GOOGLE',
text: 'Search with google',
url: 'https://google.com/'
}
const share = async () => {
try {
await navigator.share(shareData)
console.log('Shared successfully')
} catch (err) {
console.error(`Error: ${err}`)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment