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 trialMUZ140064 Onias Muchabaiwa
5,981 PointsChallenge Task 1 of 3
Create an empty function named showWeather. It should have 1 parameter named weatherReport. You don't need to put any code inside the function yet.
$(document).ready(function() {
var weatherAPI = 'http://api.openweathermap.org/data/2.5/weather';
var data = {
q : "Portland,OR",
units : "metric"
};
});
function showWeather(weatherReport) {};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>What's the Weather Like?</title>
<script src="jquery.js"></script>
<script src="weather.js"></script>
</head>
<body>
<div id="main">
<h1>Current temperature: <span id="temperature"></span>°</h1>
</div>
</body>
</html>
4 Answers
Yvette Alasti
17,589 Pointsyour answer is correct but it should be moved before the });
Cameron Mosser
7,102 PointsThe location of your function is causing the issue:
$(document).ready(function() {
var weatherAPI = 'http://api.openweathermap.org/data/2.5/weather';
var data = {
q : "Portland,OR",
units : "metric"
};
});
function showWeather(weatherReport) {}; <!-- here is the issue -->
To correct this issue, relocate your function, like this:
$(document).ready(function() {
var weatherAPI = 'http://api.openweathermap.org/data/2.5/weather';
var data = {
q : "Portland,OR",
units : "metric"
};
function showWeather(weatherReport) {}; <!-- you need to place your function here -->
});
Nejc Vukovic
Full Stack JavaScript Techdegree Graduate 51,574 Pointsvar showWeather = function(weatherReport);
You have to be careful: you have to create a named function not an anonymous one.
Hope it helps.
ellie adam
26,377 Points$(document).ready(function() { var weatherAPI = 'http://api.openweathermap.org/data/2.5/weather'; var data = { q : "Portland,OR", units : "metric"
}; var showWeather = function showWeather(weatherReport) {}; });
I solved mine with this code :)
MUZ140064 Onias Muchabaiwa
5,981 PointsMUZ140064 Onias Muchabaiwa
5,981 PointsGUYS AM STUCK PLZ HELP