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 trialSal Sal
47 PointsI cannot see anything on the browser by previewing the workspace or even by typing the same code in my editor.!!!
I cannot see anything on the browser by previewing the workspace or even by typing the same code in my editor.!!! Please help
DaJuan Harris
4,871 PointsTry posting your code.
1 Answer
Daniel Salvatori
2,658 PointsI have the same issue. I copied the code exactly as Dave did and when I hit preview nothing shows up at all, no errors in the console either.
Brian Miller
Courses Plus Student 6,696 PointsBrian Miller
Courses Plus Student 6,696 PointsSame thing with me, and i have tried chrome, firefox, and ie11.
var html = ''; var red; var green; var blue; var rgbColor;
for ( var i = 1, i <= 10, i += 1) {
red = Math.floor(Math.random() * 256 ); green = Math.floor(Math.random() * 256 ); blue = Math.floor(Math.random() * 256 ); rgbColor = 'rgb(' + red + ',' + green + ',' + blue + ')'; html += '<div style="background-color:' + rgbColor + '"></div>'; }
document.write(html);