XKCD Alt Text Displayer

By moozilla Last update Oct 15, 2007 — Installed 357 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 2 posts, 2 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
Ilmari Karonen Scriptwright

You seem to have an escaping bug in this script. The line that reads:

e.innerHTML='<br/>'+is[i].title;

should instead read:

e.appendChild(document.createElement('br'));
e.appendChild(document.createTextNode(is[i].title));

That way, it'll work correctly even if the comic title happens to contain HTML tags (which, xkcd being xkcd, wouldn't surprise me at all).

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel