| View previous topic :: View next topic |
| Author |
Message |
Jackil
Joined: 24 May 2006 Posts: 97
|
Hey all
I'm kinda new to javascript... i have: <body onLoad="initB()">... how can i add onKeyPress="microsoftKeyPress()" to it? |
| |
|
|
|
|
Roombor
Joined: 02 Jun 2006 Posts: 111
|
You can just add onkeypress="microsoftKeyPress()" in the tag, same as the other.
But note that they're onload and onkeypress, not the capitalised versions. |
| |
|
|
BigDaddy
Joined: 26 May 2006 Posts: 147
|
| HTML is case insensitive, it doesn't matter. |
| |
|
|
Jackil
Joined: 24 May 2006 Posts: 97
|
Roombor, how do i add it? is there a , or a ; ?
<body onLoad="initB()" onkeypress="microsoftKeyPress()" >
Or
How? |
| |
|
|
Roombor
Joined: 02 Jun 2006 Posts: 111
|
Well the onkeypress event goes on the object you want the key press to occur on.
I don't think you can just set an onkeypress event for the body. (I might be wrong) |
| |
|
|
kadamat
Joined: 01 Jun 2006 Posts: 88
|
| You can,but the keypress has to occur on an element that can trigger one. Then I think it bubbles |
| |
|
|
Roombor
Joined: 02 Jun 2006 Posts: 111
|
| Ok. I stand corrected. |
| |
|
|
Jackil
Joined: 24 May 2006 Posts: 97
|
| Thx, guys |
| |
|
|
|
|