Skip to content

Instantly share code, notes, and snippets.

@jeffalexander
jeffalexander / xkcd-show-image-title-bookmarklet.js
Last active December 12, 2015 07:19
XKCD Bookmarklet that on click 1) takes you to xkcd.com then click 2) inserts the image title under comic, scrolling into view if needed, and click 3) takes you to explainxkcd.com.
javascript:
cd=document.getElementById('comic');
if(cd) {
if(cd.childElementCount==2) {
window.location='http://explainxkcd.com';
} else {
p=document.createElement('p');
i=cd.children[0];
if(i.tagName=='A') {
i=i.children[0];