Show default text in shared folder?

I was wondering if it is possible to show specific text when you click the tweet and google + buttons. I know this is possible for facebook, but I could not find any useful code for the google + button.

The code that I have for my facebook share button (already works):

<a title="send to Facebook" href="http://www.facebook.com/sharer.php?s=100&p[title]=EHBE Groningen&p[summary]=this is the text to share http://sharelink.com&p[url]=www.example.nl&p[images][0]=example_image" target="_blank"> <span> <img width="14" height="14" src="'icons/fb.gif" alt="Facebook" /> Facebook </span> </a> 

The code I got currently for my tweet button (also works):

 <a href="http://twitter.com/?status=text to tweet" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','http://twitter.com']);" target="_blank">Tweet over deze pagina</a> 

so my question is is it possible to display a predefined text when you love, share or tweet a page or article on some google + button.

EDIT


I want to be able to change the text that appears when you actually click a button. So the button itself is fine.

+4
source share
2 answers

You cannot do this, as facebook and twitter provide, from what I can compile by looking at their Snippet Documentation .

What you can do is:

 <!-- Update your html tag to include the itemscope and itemtype attributes. --> <html itemscope itemtype="http://schema.org/Article"> <!-- Add the following three tags inside head. --> <meta itemprop="name" content="my title"> <meta itemprop="description" content="a description"> <meta itemprop="image" content="http://my-url.com/logo.png"> 

I understand that this will probably hurt if your content is downloaded via AJAX . In this case, you can do something like:

 <body itemscope itemtype="http://schema.org/Product"> <h1 itemprop="name">my title</h1> <img itemprop="image" src="http://my-url.com/logo.png" /> <p itemprop="description">a description</p> </body> 
+2
source

https://developers.google.com/+/web/+1button/

Read and add those tags / codes.

+1
source

All Articles