Page is a not externally linkable
Drag_Racer - 2:05 pm on Apr 27, 2007 (gmt 0)
here is what your looking for JAB, no form needed and jumps to anchors by keystrokes. just change the letters in p=/abcd/ to what ever you use in your anchor names <script type="text/javascript"> <a name="a"><!-- --></a><h1>header a</h1>
I think this is funny, and I don't know why, but this was fun... :)
function goTO(e){
var x=String.fromCharCode(e.which).toLowerCase();
var p=/[abcd]/gi;
if(p.test(x)){
window.location.hash=x;
}
}
document.onkeyup=goTO;
document.captureEvents(Event.KEYUP);
</script>
<a name="b"><!-- --></a><h1>header b</h1>
<a name="c"><!-- --></a><h1>header c</h1>
<a name="d"><!-- --></a><h1>header d</h1>