InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the event handlers in the JavaScript?(a) Adds innerHTML page to the code(b) Performs handling of exceptions and occurrences(c) Allows JavaScript code to alter the behaviour of windows(d) Change the server locationThis question was posed to me by my school teacher while I was bunking the class.Origin of the question is JavaScript in Web Browsers topic in division Server-Side and Client-Side Scripting of JavaScript |
|
Answer» RIGHT OPTION is (c) Allows JavaScript code to alter the BEHAVIOUR of windows The explanation: Event handlers ALLOW JavaScript code to alter the BEHAVIOR of windows, of documents, and of the elements that make up those documents. |
|