Skip to content

Instantly share code, notes, and snippets.

@badboy
badboy / xkcd.com.js
Created March 29, 2011 14:09 — forked from tie-rack/xkcd.com.js
dotjs for adding the title text of XKCD comics on the page [no-jquery version, far more verbose, but it works]
var comic = document.querySelector("div.s img[title]");
var titleP = document.createElement("p");
titleP.style.fontVariant = "normal";
titleP.style.border = "1px solid yellow";
titleP.style.padding = "1em";
titleP.style.backgroundColor = "#FFFFCC";
titleP.innerText = comic.title;
comic.insertAdjacentElement("afterEnd", titleP);