need help for building a role playing game -step 42
function goStore("button1") {
document.getElementById("button1").innerText = "Buy 10 health (10 gold)";
}
need help for building a role playing game -step 42
function goStore("button1") {
document.getElementById("button1").innerText = "Buy 10 health (10 gold)";
}
please provide your code and let us know what you are stuck with so we can help you
When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
You already queried the page for the button1
here
const button1 = document.querySelector('#button1');
so you don’t need this part here
instead you should reference the button1
variable
hope that helps
also, the goStore
function doesn’t have any parameters
remove your parameter here
thank you very much,
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.