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 trialAli Sh
2,026 Pointshow to write a function inside a script tag?
what is a script tag used for? to write function should i write it in the js file?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
alert("warning");
<script>
</head>
<body>
<script scr="script.js")></script>
</body>
</html>
1 Answer
Steven Parker
231,268 PointsThere are two uses for script
tags. One is to enclose a block of code, and the other is to load in an external code file using the "src" property. The instructions only ask for a simple pair of tags (the first kind), but the code shown here has the second kind (and with a syntax error caused by a stray ")" symbol).
Also, when you get to task two, the instructions explicitly say, "Inside the script tags, write a function...".