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 trialpierre Bell
592 PointsSo, am I copying and pasting the code from( index .html ) into the console to receive the output from the script js code
When I copy and paste the code from( index .html ) into the console to receive the output from the (script .js) code, I receive the following syntax error:" SyntaxError: Unexpected token '<'"
- The code used is below-
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JavaScript Basics</title> <link href="css/style.css" rel="stylesheet"> <script src="js/script.js"></script> </head> <body> <main> <h1>Hello, JavaScript!</h1> <script> alert("Another message index.html");</script> </main> </body> </html>
1 Answer
Steven Parker
231,172 PointsThe console doesn't know how to interpret HTML code, so that response is correct.
HTML code should be entered in the editor window frame above the console, when you have the index.html file open. You will then need to save your changes into the file and then use the "preview" button to see the results.
You might want to take the Using Treehouse Workspaces workshop.
Gabriela Miranda
435 PointsGabriela Miranda
435 PointsCool, another teacher said. If you don`t save there will be no changes. You must remember to save, otherwise the page does not change.