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 trialJustin Estrada
34,995 PointsCan anybody see what's wrong with my jQuery ajax $.getJSON() code
Note sure what's wrong
$(document).ready(function() {
var URL = 'http://api.openweathermap.org/data/2.5/weather';
var data = {
q : "Portland,OR",
units : "metric"
};
function showWeather(weatherReport) {
$('#temperature').text(weatherReport.main.temp);
}
jQuery.getJSON(URL, data, showWeather());
});
<!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>
1 Answer
Marcus Parsons
15,719 PointsHiya Justin,
I'm not sure why you changed the variable names in the challenge, but you shouldn't do that because the challenges look for specific variable/function names. URL should be "weatherAPI". Also, when calling the function in getJSON, you don't use () because it's a reference to the function and the function isn't called unless successful.
$(document).ready(function() {
var weatherAPI = 'http://api.openweathermap.org/data/2.5/weather';
var data = {
q : "Portland,OR",
units : "metric"
};
function showWeather(weatherReport) {
$('#temperature').text(weatherReport.main.temp);
}
$.getJSON(weatherAPI, data, showWeather);
});
Justin Estrada
34,995 PointsJustin Estrada
34,995 PointsPerfect so the answer is that the function is turned into a keyword and passing it as an argument doesn't need the '()', thanks.
Marcus Parsons
15,719 PointsMarcus Parsons
15,719 PointsAbsolutely correct. Anytime the "()" are used in conjunction with a named function (or self invoking function), that function is called then and there. There are special cases, however, where you just want to reference the function so that only when an event fires off, the function will execute. If we were to put the "()" beside the callback function in the "getJSON" function, the parser would immediately call the function before there was a success message sent back from the server along with the applicable data retrieved, and thus, you would receive an error.