Skip to content

Instantly share code, notes, and snippets.

@wachen
wachen / recent-posts-widget.js
Created October 4, 2012 20:53 — forked from louisstow/gist:2348277
Include photo caption or link text
(function(blog, limit) {
limit = +limit || 10;
var scriptTags = document.getElementsByTagName('script');
var scriptNode = scriptTags[scriptTags.length - 1];
var recent = document.createElement("div");
scriptNode.parentNode.appendChild(recent);
recent.setAttribute("class", "widget");
recent.setAttribute("id", "TumblrRecentPosts");