Karthik's blog

Delicious bookmark Button + Counter for any website, Blogger blog

2 Jan 2010

Delicious is a popular bookmarking service provided by Yahoo!
Use the below javascript codes for adding Delicious bookmark link to your website(s).

Description about the javascript parameters:

1. Adding the default Delicious bookmark Button + Counter to any webpage

<script 
src="http://orkut-share.googlecode.com/svn/trunk/delicious.js">
</script>

2. Button for custom URL, page title
<script>var delicious = {
url    : 'http://www.didiknow.com',
title  : 'Did I Know? '
}</script>
<script 
src="http://orkut-share.googlecode.com/svn/trunk/delicious.js">
</script>

3. Adding Multiple buttons in a single page
<script>var delicious = {
url    : 'http://pageURL',
title  : 'Page title',
pageId : 'uniquePageId'
}</script>
<script 
src="http://orkut-share.googlecode.com/svn/trunk/delicious.js">
</script>
4. Want a text only link ?
Use customText : 'Bookmark with Delicious'
<script>var delicious = {
url    : 'http://www.didiknow.com',
title  : 'Did I Know? ',
customText : 'Bookmark with Delicious'
}</script>
<script 
src="http://orkut-share.googlecode.com/svn/trunk/delicious.js">
</script>
Change the URL and Page title to your own URL and Page title.

Adding Delicious bookmark button + Counter for Blogger blogs





1. Goto Blogger dashboard of your blog.
2. Goto Layout tab, click "Edit Html"
3. Check the "Expand Widget Templates" checkbox
4. Locate
<div class='post-footer'>
in the template.
5. Just below the above code, paste any of the below code snippet, and save the template.

Default Button + Counter
<script>var delicious = {
url : '<data:post.url/>',
title: '<data:post.title/>',
pageId : '<data:post.id/>' 
}</script>
<script 
src="http://orkut-share.googlecode.com/svn/trunk/delicious.js">
</script>

Custom Text only link
<script>var delicious = {
url   : '<data:post.url/>',
title : '<data:post.title/>',
pageId : '<data:post.id/>',
customText : 'Bookmark on Delicious'
}</script>
<script 
src="http://orkut-share.googlecode.com/svn/trunk/delicious.js">
</script>

You many also want to add Facebook, Digg, Buzz, Tweet buttons or/and
Orkut Share link for your Website / Blogger, Wordpress blogs.

Related Posts with Thumbnails
blog comments powered by Disqus