Être correct avec les boutons share

Main image

The problem

Ever been on a website and want to tweet about it? Fortunately, the website might have a button to help you. But do you really know what this button do?

The “Like”, “Tweet” and “+1” buttons will call a javascript. It will get access to your cookies. It helps the provider of the button to know who you are.

In plain English, the “+1” button will inform Google you are visiting the website, even if you don’t click on “+1”. The same is true for the “like” button for facebook and the “tweet this” button for twitter.

The problem is not only a privacy issue. In fact (sadly imho) this isn’t an issue for most people. These button consume computer ressources. Far more than a simple link. It thus slow down a bit the computer and consume energy. These button could also slow down the rendering of your web page.

Another aspect is their design. Their look and feel is mostly imposed by the provider.

The most problematic aspect in my opinion is to use a third party js on your website. What if tomorrow twitter update their tweet button? If the upgrade break something for only a minority of people, they won’t fix it. This could occur anytime without any notification. They just have to add a document.write in their js you call asynchronously and BAM! Your website is just an empty blank page. And as you call many external ressources, it can be very difficult to find the origin of the problem.

Using social network buttons:

  • Pros:
    • help user share your website,
    • can provide a popularity indicator to your users.
  • Cons:
    • you help tracking your users,
    • generally doesn’t follow the design of your website,
    • use more computer ressources,
    • slow down your website,
    • executing third party js can break things silently.

Solutions

I will provide you two solutions with the following properties:

  • Pros:
    • help user share your website,
    • doesn’t follow your user,
    • use almost no computer ressource,
    • doesn’t slow down your website,
    • doesn’t execute any third party js on your website.
  • Cons:
    • doesn’t provide any popularity information.

Solution 1 (no js):

But you have to replace $url$ by the current url.

Solution 2 (Just copy/paste):

If you don’t want to write the url yourself, you could use some minimal js:

Here is the result:

Good looking solutions

If you don’t want just text but nice icons. You have many choices:

  • Use images <img src="..."/> in the links.
  • Use icon fonts

As the first solution is pretty straightforward, I’ll explain the second one.

  1. Download the icon font here
  2. put the font file(s) at some place (here ‘fonts/social_font.ttf’ relatively to your css file)
  3. Add this to your css

Now add this to your html:

Solution 1 (without js):

Solution 2 (same with a bit more js):

Here is the result:

· ·

Conclusion

  1. You get your design back,
  2. You stop to help tracking people,
  3. You use less computer ressources and more generally power ressources which is good for the planet,
  4. Your web pages will load faster.

ps: On my personal website I continue to use Google analytics. Therefore, Google (and only Google, not facebook nor twitter) can track you here. But I might change this in the future.