--- id: 587d7fad367417b2b2512be2 title: Change Text with click Events challengeType: 6 forumTopicId: 301500 dashedName: change-text-with-click-events --- # --description-- When the click event happens, you can use JavaScript to update an HTML element. For example, when a user clicks the `Get Message` button, it changes the text of the element with the class `message` to say `Here is the message`. This works by adding the following code within the click event: ```js document.getElementsByClassName('message')[0].textContent="Here is the message"; ``` # --instructions-- Add code inside the `onclick` event handler to change the text inside the `message` element to say `Here is the message`. # --hints-- Your code should use the `document.getElementsByClassName` method to select the element with class `message` and set its `textContent` to the given string. ```js assert( code.match( /document\s*\.getElementsByClassName\(\s*?('|")message\1\s*?\)\[0\]\s*\.textContent\s*?=\s*?('|")Here is the message\2/g ) ); ``` # --seed-- ## --seed-contents-- ```html

Cat Photo Finder

The message will go here

``` # --solutions-- ```html

Cat Photo Finder

The message will go here

```