Web Share API

The Web Share API, allows sites to share links and text to other apps via the system provided share picker.

Sorry! This browser doesn't support the Web Share API, which required for this demo.

const shareOpts = {
  title: 'Jabberwocky',
  text: 'Check out this great poem about a Jabberwocky.',
  url: 'https://en.wikipedia.org/wiki/Jabberwocky',
};
navigator.share(shareOpts);