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 trial

JavaScript AJAX Basics (retiring) jQuery and AJAX Using jQuery's $.get() AJAX method

Raeed Sabree
Raeed Sabree
10,664 Points

You'll be using jQuery's $.get() method to achieve the same result as the .load() function. Start by adding the $.get()

You'll be using jQuery's $.get() method to achieve the same result as the .load() function. Start by adding the $.get() method to 'app.js'. You don't need to pass any arguments to the function yet

i have no idea where to start i just know that im supossed to start with the dollar sign $.

app.js
$().load()
index.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>

1 Answer

Anjali Pasupathy
Anjali Pasupathy
28,883 Points

For the first task, you just need to write the following line of code:

$.get();

In the next task, you just pass a String holding the relative URL they specify into the get method.

I hope this helps!