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 trialRonnie Barua
17,665 PointsWhat is the name of this file(footer.html) other than what's in () and what do I SELECT to load footer.html?
I am going to skip this until I get an answer. Thanks
$('#footer').load();
$('#footer.html').load('footer.html');
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AJAX with JavaScript</title>
</head>
<body>
<div id="main">
<h1>AJAX with jQuery</h1>
</div>
<div id="footer"></div>
<script src="jquery.js"></script>
<script src="app.js"></script>
</body>
</html>
4 Answers
Benjamin Beezy
7,409 PointsI'm not entirely sure which code challenge you're on, but if this is the prompt: "The first argument to the $.get() method is a URL to a resource. In this case you want to load the 'footer.html' file, so pass that as the argument."
Then, the answer I found that worked was $.get('footer.html'). I think the exercise is mainly about using $.get even if it's intuitive to use .load
Robert Richey
Courses Plus Student 16,352 PointsHi Ronnie,
Here is what app.js should look like after step 2.
$('#footer').load('footer.html');
Ronnie Barua
17,665 PointsI am shocked to hear that. I wouldn't buy a thing from that dude.
Ronnie Barua
17,665 PointsThanks Bob! I've tried that and failed. What is so funny about this question is that, it is so simple yet I can't solve it.
On the other hand, I can't take Andrew's class(jquary) either because he doesn't know enough and need an American to show us.
Robert Richey
Courses Plus Student 16,352 PointsAndrew is my favorite teacher at Treehouse