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 trialSufiyaan Haroon
Full Stack JavaScript Techdegree Student 9,558 PointsUHHH... It doesn't work.
I wrote all this code as said in the video but nothing except for a empty page shows. Here is the code:
var html = '';
for ( var i = 1; i <= 10; i += 1 ) {
html += '<div>' + i + '</div>';
}
document.write(html);
Please someone tell me fast.
4 Answers
Alexandra Barnett
Front End Web Development Techdegree Graduate 46,473 PointsHi Sufiyaan! I copied your code into my workspace and it worked...did you link the javascript file to the index.html page?
Alexandra Barnett
Front End Web Development Techdegree Graduate 46,473 PointsWhich browser are you using? Perhaps it's been cached and you aren't seeing the updated version...otherwise I'm not entirely sure because it should work...I'm sorry I can't be of more help :(. I find that, on Google Chrome, I have to sometimes open the developer console and do a "hard reload" by pressing command+R or clear the browsing data from the settings...
Sufiyaan Haroon
Full Stack JavaScript Techdegree Student 9,558 PointsOh sorry actually I didn't put the file in the folder. I am really sorry for disturbing you.
Alexandra Barnett
Front End Web Development Techdegree Graduate 46,473 PointsThat's fine - glad you solved the problem :)
Garrett Freshwater
2,378 PointsHaha, I was having the same issue as you Sufiyaan. Also, same solution. Thanks!
Sufiyaan Haroon
Full Stack JavaScript Techdegree Student 9,558 PointsYeah, I was like what the hell????????
Sufiyaan Haroon
Full Stack JavaScript Techdegree Student 9,558 PointsSufiyaan Haroon
Full Stack JavaScript Techdegree Student 9,558 Points