<%= t.text %>

Tools

Bookmarklets

The bookmarklet is a button you add to your browser's Bookmarks Toolbar so you can easily save links to Delicious.

Installing the bookmarklet is easy:

  1. First, make sure your browser's bookmark toolbar is visible. Choose "Favorites bar" in View > Toolbars.
  2. Second, drag the bookmarklet button to the right to your Bookmarks Toolbar.
  3. That's it! Now, to save a webpage to Delicious, just click on your bookmarklet to open the save window. Add notes, tags, images or highlight text on the page to add it to your comments.
Add to Delicious

Drag me into your toolbar!

Bookmarklet 2.0 (Beta)

The bookmarklet lets you easily add links to your Delicious account directly from any page on your browser. It is currently supported for Chrome and Firefox (we are still working on Internet Explorer support).

Add to Delicious

Drag me into your toolbar!

To install the bookmarklet, just drag the ‘Save on Delicious’ button on the right to the bookmarks toolbar (not the navigation bar) of your browser and click the button any time you want to add a new link. It’s that simple!

The new features in this version include:

  1. A smoother and faster interface which opens the bookmarklet directly within each page (rather than opening a brand new browser window).
  2. Use the tab key on your keyboard to cycle through the title, tag, comment, privacy, and Add link fields without needing to use your mouse. Type ctrl+Enter at any point to immediately save the link.
  3. As you select suggested tags to use, additional available tag options now automatically show up in the area below the tag box.

This version of the bookmarklet is currently still in beta -- meaning there may still be kinks to work out – so feel free to send over any feedback (or bugs you’ve spotted) to feedback@delicious.com.

Bookmarklet for iPad / iPhone

If you're willing to take a few extra steps, you can install the Delicious bookmarklet into the browser on an iPhone or iPad so you can save links directly to Delicious. Here's how:

  1. Open this page from your iPad or iPhone.
  2. Click the action button (Square with Arrow on it) on your iPad / iPhone and choose "Add Bookmark".
  3. Edit the Title of the bookmark to say "Add to Delicious" (or whatever you like).
  4. Save the bookmark
  5. Copy the code below. (Hold your finger down on it until the copy paste handles pop up, then select it all and copy it).
    javascript:(function(){f='http://www.delicious.com/save?url='+encodeURIComponent(window.location.href)+'&title='+encodeURIComponent(document.title)+'¬es='+encodeURIComponent(''+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text))+'&v=6&';a=function(){if(!window.open(f+'noui=1&jump=doclose','deliciousuiv6','location=1,links=0,scrollbars=0,toolbar=0,width=550,height=585'))location.href=f+'jump=yes'};if(/Firefox/.test(navigator.userAgent)){setTimeout(a,0)}else{a()}})()
  6. Open your bookmarks (tap the book symbol).
  7. Edit your bookmarks (tap the edit button).
  8. Choose the "Add to Delicious" bookmark you just created.
  9. Click on the URL and delete it.
  10. Paste the code you copied in the earlier step (tap and hold your finger in the empty field until the Paste option appears).
  11. Return to the bookmarks, tap "Done" and you're finished.
  12. To use it, when you're on a web page you'd like to save, open the Bookmarks folder (tap the book symbol) and tap the "Add to Delicious" bookmark. You'll be able to edit any notes and save the link straight into Delicious.

Save Buttons

With a "Save this on Delicious" button, you can provide your site visitors an easy way to save it to Delicious. Here is an example (with an image added before the link):

Delicious Save this on Delicious

The best way to accomplish this is by including some javascript which pops up a post window. If javascript is off, it will navigate to the post page. Here is the code:

<img src="https://www.delicious.com/static/img/delicious.small.gif" height="10" width="10" alt="Delicious" />
        <a href="https://www.delicious.com/save" onclick="window.open('https://www.delicious.com/save?v=5&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'delicious','toolbar=no,width=550,height=550'); return false;"> Save this on Delicious</a>

Blog templates

A quick word of advice: Don't do this unless you are a geek.

Wordpress

To place this on your front page, go to Presentation -> Theme Editor -> Main Index Template. You may place the following code where you wish:

<img src="https://www.delicious.com/static/img/delicious.small.gif" height="10" width="10" alt="Delicious" />
            <a href="https://www.delicious.com/save" onclick="window.open('https://www.delicious.com/save?v=5&noui&jump=close&url='+encodeURIComponent('<?php the_permalink() ?>')+'&title='+encodeURIComponent('<?php the_title() ?>'),'delicious', 'toolbar=no,width=550,height=550'); return false;"> Save this on Delicious</a>

Movable Type

In your Main Index and Individual Archive templates, after </MTIfAllowComments>, add:

<img src="https://www.delicious.com//static/img/delicious.small.gif" height="10" width="10" alt="Delicious" />
            <a href="https://www.delicious.com/save" onclick="window.open('https://www.delicious.com/save?v=5&noui&jump=close&url='+encodeURIComponent(<$MTEntryPermalink$>)+'&title='+encodeURIComponent(<$MTEntryTitle$>),'delicious', 'toolbar=no,width=550,height=550'); return false;"> Save this on Delicious</a>