Skip to content

Instantly share code, notes, and snippets.

@thekarel
Created May 3, 2020 10:47
Show Gist options
  • Save thekarel/bdba01bc7c894dfea98978e5703affd0 to your computer and use it in GitHub Desktop.
Save thekarel/bdba01bc7c894dfea98978e5703affd0 to your computer and use it in GitHub Desktop.
Native mobile share experience on mobile browsers
// Share Url
shareUrl = function() {
if (!navigator.share) return;
navigator.share({
url: "https://mywebsite.com",
title: "Sharing Cool things",
text: "Checkout my really cool website."
})
.then(() => { console.log("Shared YEEEE!!!!!"); })
.catch((error) => { console.log("Sharing Failed") });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment