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 trialChristos Tsamis
8,091 Pointshas been blocked by CORS policy
Code is right, debuged it and and faced a CORS policy problem.. Any ideas?
Juan Lopez
Treehouse Project Reviewer3 backticks
```javascript
/* Your code here*/
```
Christos Tsamis
8,091 Points<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="main.css">
<title>AJAX with JavaScript</title>
<script>
var xhr = new XMLHttpRequest();
xhr.open('GET', 'sidebar.html');
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) {
document.getElementById('ajax').innerHTML = xhr.responseText;
}
};
function sendAJAX() {
xhr.send();
document.getElementById('load').style.display = 'none';
}
</script>
</head>
<body>
<div class="grid-container centered">
<div class="grid-100">
<div class="contained">
<div class="grid-100">
<div class="heading">
<h1>Bring on the AJAX</h1>
</div>
<button id="load" onclick="sendAJAX()" class="button">Bring it!</button>
<ul id="ajax">
</ul>
</div>
</div>
</div>
</div>
</body>
</html>
(thanks by the way ^^ )
2 Answers
Reinhard Liess
Full Stack JavaScript Techdegree Graduate 21,034 PointsMy suggestion would be that if you use Visual Studio Code to use the Live Server extension, that should fix your problems.
Christos Tsamis
8,091 Pointsi am doing so, i will try that! thanks!
Kevin Lewis
15,088 PointsWorked for me. Thank you!
Eric Butler
33,512 PointsThis is actually a really common frustration for developers and likely has nothing to do with your code: As a security feature, Chrome does not allow "cross-origin resource sharing" when you're working on localhost or just using File>Open to load a webpage locally. There are a few work-arounds, the best of which might be to run a local server with a domain alias -- but I understand that's asking a lot if you've never done it and just want to do this one thing. I personally would not suggest setting any flags --disable-web-security
that would compromise your browser. Here's some discussion about it: https://stackoverflow.com/questions/10883211/deadly-cors-when-http-localhost-is-the-origin.
Christos Tsamis
8,091 PointsEric Butler thank you, i run the project on a local server.... had to change browser to follow up the course.. thank you for your answer!
Juan Lopez
Treehouse Project ReviewerJuan Lopez
Treehouse Project ReviewerAny chance on you posting your code?