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) AJAX Concepts Introducing AJAX

So, have we been doing AJAX in the previous JS courses without noticing?

In the Jquery course, for example, we were able to make changes without having to refresh the page (for ex: adding a card after completing a form or fading out an elemtn).

Was AJAX happening then?

1 Answer

Steven Parker
Steven Parker
229,771 Points

:point_right: AJAX involves making server requests and responding to the results.

So no, just using JavaScript to make dynamic changes to a page is not AJAX. But it's something you would likely do with AJAX to display the request results to the user.