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.onload = function() { this.innerHTML = new Date().toString(); }
D timestamp.onclick = function() { innerHTML = new Date().toString(); }

Correct Answer: timestamp.onclick = function() { this.innerHTML = new Date().toString(); }

The above code snippet updates the content of the timestamp element when the user clicks on it.

Related Questions

What is the difference, in seconds, between the current timestamp in the GMT time zone and the current timestamp in your local time zone?
Which of the following describes paid content's relation to free user-generated content?
The ......... function parses an English textual date or time into a Unix timestamp.
What is the code snippet to go back to a history twice?
What is the code snippet to change the class and let the stylesheet specify the details?
What is the code snippet to find all container elements with class “reveal”?

Next steps