Skip to content

Instantly share code, notes, and snippets.

@delineas
Created July 22, 2019 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delineas/b1c9d6e0f11c03d45f8af6050f79cc62 to your computer and use it in GitHub Desktop.
Save delineas/b1c9d6e0f11c03d45f8af6050f79cc62 to your computer and use it in GitHub Desktop.
function shareSite() {
    navigator.share({
        title: document.title,
        text: 'Hello World',
        url: 'https://mewebsite.com',
    })
    .then(() => {
        console.log('Share completed successfuly')
    })
    .catch((error) => { console.log(`share failed: ${error}`) });        
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment