InterviewSolution
Saved Bookmarks
| 1. |
Which two events will have the generated text for key events?(a) key and char(b) char and text(c) text and key(d) key and value |
|
Answer» Right choice is (a) key and char Best explanation: For key events that generate printable characters, key and char will be equal to the generated text. Both key and char are onkeypress event which occurs when the user presses a key (on the keyboard). |
|