1.0.1 • Published 9 years ago

@mogusbi/jquery.share v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

jQuery Share plugin

Share current page on Facebook, Twitter, Google+ and WhatsApp

Getting started

NPM

Install package with NPM and add it to your dependencies: npm install @mogusbi/jquery.share --save

Introducing it to your page

Include jQuery and the plugin to your page. Ensure you have your canonical and/or short link meta tags present as they will be used to generate the share link. Add the data-share attributes to your button and call the share method.

<!doctype html>
<html>
  <head>
    <link href="http://mogusbi.co.uk" rel="canonical" />
    <link href="http://short.link" rel="shortlink" />
  </head>
  <body>
    <button type="button" data-share="facebook">Facebook</button>
    <button type="button" data-share="twitter">Twitter</button>
    <button type="button" data-share="google-plus">Google+</button>
    <button type="button" data-share="whatsapp">Whatsapp</button>

    <script src="jquery.js"></script>
    <script src="jquery.share.js"></script>
    <script>
      $('[data-share]').share();
    </script>
  </body>
</html>

License

Copyright © Mo Gusbi. Licensed under the MIT license.