Learn Form Validation by Building a Calorie Counter - Step 46

Tell us what’s happening:

Your code so far

function addEntry() {
  const targetInputContainer = document.querySelector(`#${entryDropdown.value} .input-container`);
  const entryNumber = targetInputContainer.querySelectorAll('input[type="text"]').length;
  const HTMLString = `
  <label for="${entryDropdown.value}-${entryNumber}-name">Entry ${entryNumber} Name</label>
  <input type="text" placeholder="Name"
  id="${entryDropdown.value}-${entryNumber}-name"/>
  `;
}

Your browser information:

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

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 46

Hi there and welcome to our community!

Could you describe exactly what you are having difficulty with please? What error messages are you seeing?

1 Like

Morning @codeWithMbroh ,

Wow, this was a tough nut to crack!

  <input type="text" placeholder="Name"
  id="${entryDropdown.value}-${entryNumber}-name"/>

Take a look at your spacing between "Name" and id="${ent... spacing can make or break a line of code quite often!

Good luck!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.