Reputation: 449
I would like to add social media buttons and productivity buttons to my blog. Ex: https://developers.google.com/+/web/share/
Is there an official Evernote button that would trigger "save to evernote" or something similar? or any other resource that is useful?
Upvotes: 1
Views: 435
Reputation: 11
Found the url code for Evernote Clipping, as below.
Just in case if only need the Evernote one not others.
<li>
<a href="http://www.evernote.com/clip.action?url={{your-site-url}}" target="_blank" title="Clip to Evernote" onclick="window.open('http://www.evernote.com/clip.action?url=' + encodeURIComponent(document.URL) + '&t=' + encodeURIComponent(document.title)); return false;">
<img src="{{your-icon-url}}">
</a>
</li>
Upvotes: 1
Reputation: 101
The closest I know of would be using AddToAny:
Upvotes: 2