Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Feedback on: irt.org FAQ Knowledge Base Q27, May 22, 2001 at 14:20:11:

You are here: irt.org | About | Feedback | 2752 [ previous next ]

Feedback on:
irt.org FAQ Knowledge Base Q27

Sent by
Mr. Werner on May 22, 2001 at 14:20:11:

Worth:
Very worth reading

Technical:
Not technical enough

Comments:
Try this JavaScript:

document.onkeydown=checkKeys;
if (navigator.appName == 'Netscape')
document.captureEvents(Event.KEYDOWN);

function checkKeys(e)
{
if (navigator.appName == 'Netscape')
theKey = e.which;
else
theKey = window.event.keyCode;

if (theKey == 13)
{
document.YOURFORMNAME.submit();
return false;
}
}


Other feedback on 'irt.org FAQ Knowledge Base Q27' - show all

©2018 Martin Webb