Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SideShowBob1972

    onkeypress enter key

    I have some code which checks for the enter key being pressed and then executes some code. function enterPressed(evn) { if (window.event && window.event.keyCode == 13) { Some code } else if (evn && evn.keyCode == 13) { Some Code } } document.onkeypress = enterPressed; It works on every...

Part and Inventory Search

Back
Top