Learn Basic Algorithmic Thinking by Building a Number Sorter - Step 4

Tell us what’s happening:

You should call the .addEventListener() method on your sortButton element.

document.getElementById(“sortButton”).addEventListener(“click”,sortInputArray);

this isnt calling addEventListener to my sortButton element?

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

document.getElementById("sortButton").addEventListener("click",sortInputArray);

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Learn Basic Algorithmic Thinking by Building a Number Sorter - Step 4

good question (and welcome to the forum).

If this code was working as you expect, then it would find an element whose id is sortButton correct?

Go ahead and check the index.html. Is there an element there whose id is sortButton?

1 Like

your reply led me to the right path! Thank you!

2 Likes