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 trialPhilip Bradbury
33,368 PointsJQUERY AJAX $GET()
Just need something clearing up using the Get method,
In the video we have this code :
function sendAJAX() {
$.get('sidebar.html', function (response) {
$('#ajax').html(response);
});
}
My issue is around the function (response).... What is the (response) argument doing, is it getting the sidebar.html and putting it in .html(response); ?
Thanks
Phil
1 Answer
Florian Goussin
8,925 PointsThe browser request the page sidebar.html from the server.
The response is what the server send back to the browser after the request. So the content of sidebar.html probably.
Philip Bradbury
33,368 PointsPhilip Bradbury
33,368 PointsYes thank you , i watched it again and it made sense. Been a long day. Thanks for the confirmation though.