Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Philip 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.