Expert Developer JavaScript Question:
Download Questions PDF

Explain with an example the use of event handlers in JavaScript?

Expert JavaScript Developer Interview Question
Expert JavaScript Developer Interview Question

Answer:

The events in JavaScript are the actions in a document that result from user activity. The actions are like clicking on a button or typing a character in the form. JavaScript object in a document that receives events of different kinds. To handle the events that are taking place requires an even handler that can handle the execution of the events. Event acts like an added attribute that is entered in object's HTML. The attribute is consisting of event name, sign like (=), instructions. The following code shows the event handler as :
<HTML>
<BODY>
<FORM>
<INPUT TYPE="button" VALUE="Hello" onClick="window.alert ('HELLO WORLD')">
</FORM>
</BODY>
</HTML>

Download Expert JavaScript Developer Interview Questions And Answers PDF

Previous QuestionNext Question
Explain the role of deferred scripts in JavaScript?What are Math Constants and Functions using JavaScript?