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 trialLena Apoyan
11,728 PointsGetting error in console
I've checked many times and I'm sure my code is the same as in video but in console I get this error: "GET http://port-80-egztads0hy.treehouse-app.com/data/empoyees.json 404 (Not Found)". My code:
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () {
if(xhr.readyState === 4) {
console.log(xhr.responseText);
}
};
xhr.open('GET', 'data/empoyees.json');
xhr.send();
1 Answer
Chris Shaw
26,676 PointsHi Lena,
You have a minor typo in your url, empoyees.json should be employees.json as you don't have an l in there, the working URL is as below.
http://port-80-egztads0hy.treehouse-app.com/data/employees.json
Happy coding!
Lena Apoyan
11,728 PointsLena Apoyan
11,728 PointsThank you Chris, I've found it already too. I need to be more careful :)
Chris Shaw
26,676 PointsChris Shaw
26,676 PointsNo worries.