User:JimTittsler/AddThis.js

From WikiEducator
Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
// put AddThis button in sidebar navigation
 
$(function() {
  $('#panel').append('\
<div id="socialbookmarks" style="padding:0 0.25em 0.25em 1em;">\
  <script type="text/javascript">\
    addthis_url = location.href;\
    addthis_title = document.title;\
    addthis_logo = "http://WikiEducator.org/images/wiki.png";\
    addthis_brand = "WikiEducator";\
    addthis_options = "favorites, email, digg, delicious, more";\
  </script>\
  <a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250"><img src="http://s7.addthis.com/static/btn/v2/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>\
</div>');
});