Learn Form Validation by Building a Calorie Counter - Step 38

Tell us what’s happening: Step 38

Now you need to target the .input-container element within the element that has your targetId. Declare a new targetInputContainer variable, and assign it the value of document.querySelector(). Use concatenation to separate targetId and '.input-container' with a space, and pass that string to querySelector().

You should concatenate ' .input-container' to targetId . Remember to include the space at the beginning of .input-container .
i do this but code dose not pass.
anyone tell me how to fix this.

Your code so far

function addEntry() {
const targetId = ‘#’ + entryDropdown.value+’ .input-container’;
const targetInputContainer = document.querySelector(targetId);

}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) 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 38

You shouldn’t edit the targetId declaration.
I would reset the step and then rewrite your targetInputContainer declaration, putting the concatenation inside the parentheses instead.

i do add the space but this post not show it
’ .input-container’;

thank you my friend!
it’s work.

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