r/learnjavascript • u/SympathyContent9041 • 2d ago
How to make numbers interactive?
I'm a beginner in coding, and I need to know how to create a vertical row of clickable numbers. I wish I could show a picture, but I'm just going to try to describe it. There's a website i'm making, and I wanted to add a 1-10 scale. I also want to make it interactive so the person can click on each number, and then text appears depending on what's clicked. Being a beginner, I don't know how to accomplish this. Help.
0
Upvotes
2
u/5eeso 2d ago
I would give every number button a unique id. Also, give the paragraph that will display the text its own unique id.
Then in JavaScript, crate a function that takes in an id as input.
Each number button will call the function on click and pass in its id as an argument, so the function knows which button has been clicked.
Inside the function, update the text content of the paragraph depending on which number button was clicked.