Simple sharing

The line between the web and native applications is becoming more and more blurred. One of the latest goodies to land in browsers that gives our users a consistent, seamless experience is the Web Share API currently only available in Chrome.

There are a couple requirements in order to use the Web Share API. Firstly, as with a lot of the new browser features, your site must be served over HTTPS. Second, you can only trigger the share UI as part of a user interaction, such as a click. You can share any URL you want, it doesn't have to just be the page your user is currently on.

As support is very limited you should use feature detection to make sure the browser supports it before showing the share button to your user.

if (navigator.share) {
  // We're good to go
  useNativeShare();
} else {if (navigator.share) {
  // Web Share API isn't supported, we can fall back to classic methods such as a share button for each social platform
  useFallbackShare();
}

You can trigger the native dialog by calling navigator.share() from a user interaction event. You have the option of setting the URL, title and a bit of text to share. All properties are optional but at least one must be provided.

function useNativeShare() {
  shareButton.addEventListener('click', function(event) {
    event.preventDefault();
    navigator.share({
      url: window.location.href,
      title: document.title,
      text: "Check this out! You wouldn't believe what happens..."
    });
  });
}
Example Web Share API Dialog
Native UI

You can read more about the Web Share API from Google Developers.