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 trialPatrick McLeod
5,913 PointsChallenge Task 2 of 2
Challenge Task 2 of 2 requests the following: “Inside the script tags, write a function that will open an alert dialog with the message 'Warning!'”
This is what I wrote:
<script>
alert("Opening script inside the body");
alert("´Warning!´");
alert("Closing script inside the body");
</script>
Apparenty, I didn't put 'Warning!' inside the alert()
function.?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script>
alert("Opening script inside the body");
alert("´Warning!´");
alert("Closing script inside the body");
</script>
</body>
</html>
2 Answers
Mariana Hoffmann
Courses Plus Student 11,046 PointsHello Patrick! The challenge is asking you to write the alert function with the warning message, inside the script tags.
Your code should look something like this:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script>
alert("Warning!");
</script>
</body>
</html>
Heba Hendy
7,786 Points<Script> alert("Warning!"); </Script>
Patrick McLeod
5,913 PointsPatrick McLeod
5,913 PointsThanks, I had not understood that I was mean to eliminate/replace the previous function I had written