InterviewSolution
Saved Bookmarks
| 1. |
Which of these methods can be used to know the type of focus change?(a) typeFocus()(b) typeEventFocus()(c) isTemporary()(d) isPermanent() |
|
Answer» Correct answer is (c) isTemporary() Explanation: There are two types of focus events – permanent and temporary. The isTemporary() method indicates if this focus change is temporary, it returns a Boolean value. |
|