Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Unable to display buttons with existing <li> elements. All the buttons are displayed in one line for new element.

I tried to find the error in my code. I matched my code but could'nt find the bug.

https://w.trhou.se/lyl75ruuvr

1 Answer

Linas Mackonis
Linas Mackonis
7,071 Points

Hi Archit,

Cut the for loop:

for(let i=0; i < lis.length; i += 1) {
attachListItemButton(lis[i]);
}

And paste it below your function - attachListItemButton(li);

When this for loop sits inside your function declaration it exceeds the call stack limit in your function declaration.

Small tip: you don't need to write a semi colon, after the closing curly braces, when you declare a function.

I tried the solution and it worked!!!

Thank you Linas