[link]
a marvelous piece of code, especially useful combined with a smackjeeves template. It makes it possible to switch page with the keyboard instead of the mouse. It's a very simple java scrip you add at the bottom of the comic page. In theory it should work elsewhere. It works with smackjeeves, because you can add custom html and javascipt code.
follow this link and see the results yourself
<xscript type = "text/javascript">
document.onkeydown = function(e)
{
var e = window.event || e
if (e.keyCode == 37)
{
window.location = "{NAV_PREV}";
}
else if (e.keyCode == 39)
{
window.location = "{NAV_NEXT}";
}
}
</script>
just remove the first x










