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 trialRobert Roberson
Courses Plus Student 8,401 PointsMy Console only gives out errors message and I can't figure out why. Any ideas
So, I am working javascript in the workshop and this is what I put into index.html, <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Basics</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<main></main>
<script src="js/prompt.js"></script>
</body>
</html>
and this is what I put into prompt.js
prompt("What is your name?");
And all I get is error messages. Does anyone have any notion why? This is the message, chrome-extension://invalid/:1 Failed to load resource: net::ERR_FAIL
1 Answer
Torben Korb
Front End Web Development Techdegree Graduate 91,433 PointsHi Robert, probably this is a problem from a chrome extension you're running in your browser. Go to chrome://extensions/ in your browser and disable extension by extension and try again.
Hope this helps. Happy coding!
Robert Roberson
Courses Plus Student 8,401 PointsRobert Roberson
Courses Plus Student 8,401 PointsThanks, I will try that.
Robert Roberson
Courses Plus Student 8,401 PointsRobert Roberson
Courses Plus Student 8,401 PointsOr maybe, I should be in developer mode. Thank you, so much. I would have never looked at that had it not been for you.