BTW, for any Greasemonkey users out there, the following script will display the hidden comments below the comic.<br><br>Sean<br><br><br>// ==UserScript==<br>// @name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xkcdimagetitles<br>// @namespace&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://ertw.com">http://ertw.com</a><br>
// @include&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://xkcd.com/*">http://xkcd.com/*</a><br>// @description&nbsp; Displays the image title<br>// ==/UserScript==<br><br>images = document.evaluate(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;//img[@title]&#39;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; document,<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; null,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; null);<br>for (var i = 0; i &lt; images.snapshotLength; i++) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; img = images.snapshotItem(i);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foo = document.createElement(&#39;div&#39;);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foo.innerHTML=img.getAttribute(&quot;title&quot;);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; img.parentNode.insertBefore(foo, img.nextSibling);<br>}<br><br><div class="gmail_quote">On Feb 2, 2008 10:30 PM, Montana Quiring &lt;<a href="mailto:montanaq@gmail.com">montanaq@gmail.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hello,<br><br>This kind of settles the whole emacs vs. vi debate:<br><a href="http://xkcd.com/378/" target="_blank">http://xkcd.com/378/</a><br>
<br>-Montana<br>_______________________________________________<br>Roundtable mailing list<br><a href="mailto:Roundtable@muug.mb.ca">Roundtable@muug.mb.ca</a><br><a href="http://www.muug.mb.ca/mailman/listinfo/roundtable" target="_blank">http://www.muug.mb.ca/mailman/listinfo/roundtable</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Sean Walberg &lt;<a href="mailto:sean@ertw.com">sean@ertw.com</a>&gt; &nbsp; &nbsp;<a href="http://ertw.com/">http://ertw.com/</a>