There is, of course, a ready-made Javascript code to include the latest del.icio.us postings to your blog or web page, but if you want to 'beautify' it, take a look at what I've done. I used del.icio.us' JSON object, named Delicious.posts that contains the latest bookmarks. I snatched the code from the del.icio.us JSON help page and added a few enhancements, like the extended note and the associated tags. This is the code: latest del.icio.us postings \\ latest del.icio.us postings First, set up the HTML container for the heading and the postings. The Delicious.posts object is fetched using: The script iterates through the object, parsing the URL ( Delicious.posts[i].u ), description ( d ), and extended note, if any ( n ). The inner j loop iterates through the tags ( t ). The script also fetches the page icon of each link. To roll your own, just replace the username in: and var tagu = 'http://del.icio.us/iandexter/' + post.t[j]; Paste in the code som...