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 trial

JavaScript

kerry bennett
kerry bennett
1,976 Points

js alert does not show in browser when launched

js alert does not show in browser when launched

kerry bennett
kerry bennett
1,976 Points

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="css/main.css"> <title>JavaScript Basics</title> <script src="scripts.js"></script> <script>alert("welcome to javascript!");</script> </head> <body> <div class="container"> <h1>Where to place your JavaScript code.</h1> </div> </body> </html>

the alert script does not work..

3 Answers

kerry bennett
kerry bennett
1,976 Points

the code is fine it must be work space itself. i ran the code in note++ and works fine. Thanks for your help.

kerry bennett
kerry bennett
1,976 Points

alert("welcome to javascript");

Michael Afanasiev
PLUS
Michael Afanasiev
Courses Plus Student 15,596 Points

Did you link your .js file in your html code?

<script src="javascript.js"></script>
kerry bennett
kerry bennett
1,976 Points

yes. i tried with html and the java document.

Michael Afanasiev
Michael Afanasiev
Courses Plus Student 15,596 Points

Are you using Workspaces/code editor or you are doing a quiz? Could you please post the full html code along with your JavaScript code?

kerry bennett
kerry bennett
1,976 Points

i saved as .js file. it just display's the text i wrote such as alert(); . no alert box just text.

this was the code: alert("welcome to javascript"); like i wrote html.