// Show del.icio.us BOOKMARK (JSON)
var i, j, t;
var account = 'http://del.icio.us/maR_K/';
var html ='
' + 'del.icio.usの新着ブックマーク20件です。
';
html += '\n';
for (var i=0, post; post = Delicious.posts[i]; i++) {
html += '- ';
html += '';
html += post.d;
html += '';
if (post.t.length) {
for ( j = 0; j< post.t.length; j++) {
post.t[j] = '' + post.t[j] + '';
}
html += '
- Tag : ' + post.t.join(', ') + '
';
}
' ';
}
html += "
\n";
document.getElementById('bookmarks').innerHTML = html;