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!
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
ARCHIT RANA
Full Stack JavaScript Techdegree Graduate 27,853 PointsUnable 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.
1 Answer

Linas Mackonis
7,071 PointsHi 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.
ARCHIT RANA
Full Stack JavaScript Techdegree Graduate 27,853 PointsARCHIT RANA
Full Stack JavaScript Techdegree Graduate 27,853 PointsI tried the solution and it worked!!!
Thank you Linas