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 AJAX Concepts A Simple AJAX Example

karan Badhwar
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
karan Badhwar
Web Development Techdegree Graduate 18,135 Points

onreadystatechange

Can somebody please explain me what is onreadystatechange event, as we just refreshed the page so how come the state was changed for the ajax request, coz we never asked specifically to look for the state change

Caleb Kemp
Caleb Kemp
12,754 Points

Ok, have you ever been surfing the web and received a 404 error (page not found). When a website loads it will also send a status code, if working properly that code will usually be 200. Similar to that, the onreadystatechange method will listen to the browser for a "ready state" code. So, when the request is made, the ready state will be something like 1. Once the file has fully downloaded, the browser will change that ready state property to 4.

The state changed because the file asked for finished downloading.

Caleb Kemp
Caleb Kemp
12,754 Points

Glad I was able to be of assistance