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
Daniel Salvatori
2,658 PointsIssue with the webpage showing
So I copied the code exactly
var html = '';
for (var i = 1; i <= 10; i += 1){
html += '<div>' + i + '</div>';
}
document.write(html)
But when I preview, my page is blank save for one circle with no number in it. I check the console and its giving me no errors with my code however I get a 404 not found error.
Is it an issue with my os or browser? Im on a chromebook and using chrome (obviously)
Curtis Vanzandt
9,165 PointsCurtis Vanzandt
9,165 PointsThat's weird, it's working when I copy/paste into VS Code and copied the path.