What is the code snippet to update the content of the timestamp element when the user clicks on it?
A. timestamp.onLoad = function() { this.innerHTML = new Date().toString(); }
B. timestamp.onclick = function() { this.innerHTML = new Date().toString(); }
C. timestamp.onclick = function() { innerHTML = new Date().toString(); }
D. None of the above
Answer: Option B
Solution (By Examveda Team)
The above code snippet updates the content of the timestamp element when the user clicks on it.Related Questions on Server Side and Client Side Scripting
What are the events generated by the Node objects called?
A. generators
B. emitters
C. dispatchers
D. highevents
What is the function used to deregister event handler ‘f’?
A. deleteAllListeners(name)
B. deleteListener(name,f)
C. removerListener(name,f)
D. removeAllListeners(name)
What is the function used to remove all handlers for name events?
A. deleteAllListeners(name)
B. deleteListener(name,f)
C. removerListener(name,f)
D. removeAllListeners(name)

Join The Discussion